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