bce1ab5efd
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@5458 a95241bf-73f2-0310-859d-f6bbb57e9c96
28 lines
407 B
C++
28 lines
407 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();
|
|
|
|
virtual status_t RegisterPlugin();
|
|
};
|
|
|
|
class Decoder;
|
|
class Reader;
|
|
|
|
} } // namespace BPrivate::media
|
|
|
|
using namespace BPrivate::media;
|
|
|
|
extern "C" MediaPlugin *instantiate_plugin();
|
|
|
|
#endif
|