winamp/Src/xspf/XSPFHandlerFactory.h

19 lines
456 B
C
Raw Permalink Normal View History

2024-09-24 12:54:57 +00:00
#ifndef NULLSOFT_XSPF_XSPFHANDLERFACTORY_H
#define NULLSOFT_XSPF_XSPFHANDLERFACTORY_H
#include <api/service/waservicefactory.h>
class XSPFHandlerFactory : public waServiceFactory
{
public:
FOURCC GetServiceType();
const char *GetServiceName();
GUID GetGuid();
void *GetInterface(int global_lock = TRUE);
int ReleaseInterface(void *ifc);
protected:
RECVS_DISPATCH; // all Wasabi objects implementing a Dispatchable interface require this
};
#endif