factory_f263.h 553 B

123456789101112131415161718192021222324252627
  1. /* copyright 2008 Ben Allison */
  2. #ifndef NULLSOFT_FACTORY_F263_H
  3. #define NULLSOFT_FACTORY_F263_H
  4. #include "api.h"
  5. #include <api/service/waservicefactory.h>
  6. #include <api/service/services.h>
  7. class F263Factory : 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