Files
Work/watchdog/CBThunkCtrlHandler.cpp
2024-08-07 09:16:27 -04:00

19 lines
324 B
C++

#include <watchdog/CBThunkCtrlHandler.hpp>
CBThunkCtrlHandler::~CBThunkCtrlHandler()
{
}
void CBThunkCtrlHandler::entryProc(DWORD control)
{
controlHandler(control);
}
// *** virtuals
void CBThunkCtrlHandler::controlHandler(DWORD control)
{
::OutputDebugString("[CBThunkCtrlHandler::controlHandler]\n");
return;
}