wac_downloadManager_factory.h 859 B

12345678910111213141516171819202122232425262728293031323334353637
  1. #ifndef NULLSOFT_WAC_DOWNLOAD_MANAGER_FACTORY_H
  2. #define NULLSOFT_WAC_DOWNLOAD_MANAGER_FACTORY_H
  3. #include "api__wac_downloadManager.h"
  4. #include "api/service/waservicefactory.h"
  5. #include "api/service/services.h"
  6. namespace wa
  7. {
  8. namespace Components
  9. {
  10. class WAC_DownloadManagerFactory : public waServiceFactory
  11. {
  12. public:
  13. FOURCC GetServiceType();
  14. const char *GetServiceName();
  15. GUID GetGUID();
  16. const char *GetTestString();
  17. void *GetInterface( int global_lock );
  18. int ReleaseInterface( void *ifc );
  19. int SupportNonLockingInterface();
  20. int ServiceNotify( int msg, int param1, int param2 );
  21. HRESULT Register( api_service *p_service );
  22. HRESULT Unregister( api_service *p_service );
  23. protected:
  24. RECVS_DISPATCH;
  25. };
  26. }
  27. }
  28. #endif // !NULLSOFT_WAC_DOWNLOAD_MANAGER_FACTORY_H