Add project

This commit is contained in:
Allen Wolf
2024-01-10 01:27:46 -06:00
parent 646f315c8f
commit d68f30759d
11 changed files with 485 additions and 0 deletions

8
src/KeyboardHook.h Executable file
View File

@ -0,0 +1,8 @@
#ifdef KEYBOARDHOOK_EXPORTS
#define KEYBOARDHOOK_API extern "C" __declspec(dllexport)
#else
#define KEYBOARDHOOK_API extern "C" __declspec(dllimport)
#endif
KEYBOARDHOOK_API INT32 InstallHook(HWND hwndParent);
KEYBOARDHOOK_API INT32 UninstallHook();