mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-17 16:55:46 -04:00
Initial community commit
This commit is contained in:
17
Src/wbm/WbmSvcMgr.h
Normal file
17
Src/wbm/WbmSvcMgr.h
Normal file
@ -0,0 +1,17 @@
|
||||
#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;
|
||||
};
|
Reference in New Issue
Block a user