haiku/headers/private/media/MediaPlugin.h
Axel Dörfler c38d73ee4c New meta_format structure that is used internally by BMediaFormats and
the FormatManager in the server.
Update the plugin API.


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6241 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-01-23 07:24:51 +00:00

26 lines
369 B
C++

#ifndef _MEDIA_PLUGIN_H
#define _MEDIA_PLUGIN_H
#include <BeBuild.h>
#include <SupportDefs.h>
namespace BPrivate { namespace media {
class MediaPlugin
{
public:
MediaPlugin();
virtual ~MediaPlugin();
};
class Decoder;
class Reader;
} } // namespace BPrivate::media
using namespace BPrivate::media;
extern "C" MediaPlugin *instantiate_plugin();
#endif