factory_playlistmanager.h 611 B

12345678910111213141516171819202122232425262728
  1. #ifndef NULLSOFT_FACTORY_PLAYLISTMANAGER_H
  2. #define NULLSOFT_FACTORY_PLAYLISTMANAGER_H
  3. #include "api__playlist.h"
  4. #include "api/service/waservicefactory.h"
  5. #include "api/service/services.h"
  6. class PlaylistManagerFactory : public waServiceFactory
  7. {
  8. public:
  9. FOURCC GetServiceType();
  10. const char *GetServiceName();
  11. GUID GetGUID();
  12. void *GetInterface( int global_lock );
  13. int SupportNonLockingInterface();
  14. int ReleaseInterface( void *ifc );
  15. const char *GetTestString();
  16. int ServiceNotify( int msg, int param1, int param2 );
  17. protected:
  18. RECVS_DISPATCH;
  19. };
  20. #endif