factory_alac.h 632 B

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