Initial
This commit is contained in:
18
hookproc/ENUMWIN.CPP
Normal file
18
hookproc/ENUMWIN.CPP
Normal file
@@ -0,0 +1,18 @@
|
||||
#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;
|
||||
}
|
||||
Reference in New Issue
Block a user