git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@21299 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Marcus Overhagen
2007-06-02 23:16:54 +00:00
parent b2d0e81723
commit 9e448b6224
2 changed files with 16 additions and 10 deletions
+7 -1
View File
@@ -7,6 +7,8 @@
#include <Locker.h>
namespace BPrivate { namespace media {
class PluginManager
{
public:
@@ -26,7 +28,7 @@ public:
void DestroyDecoder(Decoder *decoder);
private:
bool LoadPlugin(const entry_ref &ref, MediaPlugin **plugin, image_id *image);
status_t LoadPlugin(const entry_ref &ref, MediaPlugin **plugin, image_id *image);
struct plugin_info
{
@@ -40,6 +42,10 @@ private:
BLocker *fLocker;
};
} } // namespace BPrivate::media
using namespace BPrivate::media;
extern PluginManager _plugin_manager;
#endif