Tagged Questions

0
votes
3answers
73 views

SetWindowsHookEx in C#

I'm trying to hook a 3rd party app so that I can draw to its screen. Drawing to the screen is easy and I need no help with it, but I seem to be having issues with using SetWindowsHookEx to handle …
0
votes
3answers
36 views

not able to install hooks for all threads in a process

I am hooking keyboard in application . Requirement is to hook keyboard in all threads in the process. I used SetWindowsHookEx API SetWindowsHookEx(WH_KEYBOARD_LL, (HOOKPROC)::KeyboardHookProc, …
0
votes
2answers
49 views

SetWindowsHookEx WH_KEYBOARD_LL not getting events

I am using SetWindowsHookEx() to create a keyboard hook. The creation seems to be successful but the procedure which is registered never gets called. Is there something I am doing wrong? #region …