mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-11-15 00:24:54 -05:00
19 lines
No EOL
456 B
C++
19 lines
No EOL
456 B
C++
#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 |