Tagged Questions

2
votes
3answers
359 views

system-wide hook for 64-bit operating systems

I want to perform a system-wide hook (using SetWindowHook) on a 64bit operating system. I know that 64bit processes (= proc64) can load only 64bit dlls (= dll64) and 32bit processes (= proc32) can ...
1
vote
1answer
91 views

prevent hook dll loading

Is there a way to way set process security permissions or some other way to disable Windows from loading global window hook dlls? I don't want to disable SetWindowsHookEx, I just want to disable the ...
1
vote
2answers
294 views

SetWindowsHookEx failing with google chrome. Error code 87 invalid parameter

I am making a tutorial based program and want to be able to hook my code into certain apps to get the tutorial interacting with the app. My hook code works for most apps except google chrome. I have ...
1
vote
3answers
169 views

How can I keep an event from being delivered to the GUI until my code finished running?

I installed a global mouse hook function like this: mouseEventHook = ::SetWindowsHookEx( WH_MOUSE_LL, mouseEventHookFn, thisModule, 0 ); The hook function looks like this: RESULT CALLBACK ...
1
vote
1answer
2k views

C++ SetWindowsHookEx WH_KEYBOARD_LL Correct Setup

I'm creating a console application in which I'd like to record key presses (like the UP ARROW). I've created a Low Level Keyboard Hook that is supposed to capture all Key Presses in any thread and ...
0
votes
1answer
202 views

SetWindowsHookEx doesn't work with thread Id

Hello and thanks in advance to anyone thatll try to help. I'm trying to set a CBT windows hook, which works well when Im setting it globally, but fails whenever I try to attach it to a single thread. ...
0
votes
1answer
287 views

Hooking Win32 windows creation/resize/querying sizes

I'm trying to "stretch" an existing application. The goal is to make an existing application become larger without changing the code of that application. A cosntraint is that the stretched ...
0
votes
3answers
182 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, ...