mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-09-24 15:54:12 +00:00
17 lines
279 B
C
17 lines
279 B
C
|
#pragma once
|
||
|
#include <windows.h>
|
||
|
#include <api/service/api_service.h>
|
||
|
|
||
|
class WbmSvcMgr : public api_service
|
||
|
{
|
||
|
public:
|
||
|
WbmSvcMgr(HANDLE _manifest)
|
||
|
{
|
||
|
manifest=_manifest;
|
||
|
}
|
||
|
int service_register(waServiceFactory *svc);
|
||
|
protected:
|
||
|
RECVS_DISPATCH;
|
||
|
private:
|
||
|
HANDLE manifest;
|
||
|
};
|