Initial community commit
This commit is contained in:
parent
537bcbc862
commit
fc06254474
16440 changed files with 4239995 additions and 2 deletions
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;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue