c38d73ee4c
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
26 lines
369 B
C++
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
|