31 lines
543 B
C++
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;
|
|
}
|