Files
Work/hookproc/ENUMWIN.CPP
2024-08-07 09:16:27 -04:00

19 lines
303 B
C++

#include <hookproc/enumwin.hpp>
#include <common/string.hpp>
EnumWindowsHook::~EnumWindowsHook()
{
}
bool EnumWindowsHook::entryProc(HWND hWnd,LPARAM lParam)
{
return enumWindowsProc(hWnd,lParam);
}
// *** virtuals
bool EnumWindowsHook::enumWindowsProc(HWND hWnd,LPARAM lParam)
{
return true;
}