This commit is contained in:
2024-08-07 09:16:27 -04:00
parent fdfadd5c7e
commit 5f971cf684
5200 changed files with 731717 additions and 0 deletions

30
service/servicehook.cpp Normal file
View File

@@ -0,0 +1,30 @@
#include <service/ServiceHook.hpp>
#include <common/string.hpp>
ServiceHook::~ServiceHook()
{
}
void ServiceHook::serviceMainEntryProc(DWORD dwArgc,LPTSTR *lpszArg)
{
svcMain(dwArgc,lpszArg);
}
void ServiceHook::serviceHandlerEntryProc(DWORD dwControl)
{
svcHandler(dwControl);
}
// *** virtuals
void ServiceHook::svcMain(DWORD dwArgc,LPTSTR *lpszArg)
{
::OutputDebugString("ServiceHook::serviceMain\n");
return;
}
void ServiceHook::svcHandler(DWORD dwControl)
{
::OutputDebugString("ServiceHook::serviceHandler\n");
return;
}