Initial
This commit is contained in:
30
service/servicehook.cpp
Normal file
30
service/servicehook.cpp
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user