main.h 912 B

12345678910111213141516171819202122232425262728293031323334353637
  1. #ifndef NULLSOFT_WAC_DOWNLOAD_MANAGER_MAIN_H
  2. #define NULLSOFT_WAC_DOWNLOAD_MANAGER_MAIN_H
  3. #include "wac_downloadManager_global.h"
  4. #include "api__wac_downloadManager.h"
  5. //#include "wac_downloadManager.h"
  6. //#include "wac_download_http_receiver.h"
  7. #include "bfc/dispatch.h"
  8. #include "../../Winamp/Singleton.h"
  9. #include "../../Agave/Component/ifc_wa5component.h"
  10. namespace wa
  11. {
  12. namespace Components
  13. {
  14. class WAC_DownloadManager_Component : public ifc_wa5component
  15. {
  16. public:
  17. WAC_DownloadManager_Component() {}
  18. void RegisterServices( api_service *service );
  19. int RegisterServicesSafeModeOk() { return 1; }
  20. void DeregisterServices( api_service *service );
  21. protected:
  22. RECVS_DISPATCH;
  23. };
  24. }
  25. }
  26. #endif // !NULLSOFT_WAC_DOWNLOAD_MANAGER_MAIN_H