Files
Work/service/servicehook.cpp
2024-08-07 09:16:27 -04:00

31 lines
543 B
C++

#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;
}