vote up 3 vote down star

I have a system-wide keyboard hook DLL that I have created that has been working successfully for years in Windows XP.

However, it appears that in certain later versions of Windows (Vista Home Premium, and Windows 7, to name a couple), the hook either does not work at all, or it simply works only locally within the application that installed it.

I have seen it suggested in a couple of places on the internet to change the WH-KEYBOARD to WH-KEYBOARD-LL in the call to SetWindowsHookEx, but this doesn't appear to help when I tried it. Is there something else I need to change in addition to changing the hook type to WH-KEYBOARD-LL?

(P.S.: I had to define WH-KEYBOARD-LL as 13, since it not defined in Delphi. I'm assuming this is accurate.)

flag
According to pinvoke.net/default.aspx/Enums/…, yes, WH_KEYBOARD_LL is 13. – Joe White Oct 1 at 19:43

2 Answers

vote up 0 vote down

Bah! Pipped at the post! +1 to Allen's answer.

Also, I found this at http://msdn.microsoft.com/en-us/library/ms644985%28VS.85%29.aspx

This hook is called in the context of the thread that installed it. The call is made by sending a message to the thread that installed the hook. Therefore, the thread that installed the hook must have a message loop.

Is that true in your instance? Is it being installed from the main VCL thread, or from another thread? You may need to set up a message cue in that thread (Call PeekMessage() from the thread).

N@

link|flag
vote up 6 vote down

Make sure the process hosting the hook is at the same privilege level of the application you intend to hook. Keyboard and other hooks are a high security risk, so Vista and later was changed to only allow system-wide hooks in processes within a common certain security context. In other words, if you start the hook host process with user rights, it will only hook processes that are at the same privilege level. If you think about it, this make sense because you would not want a user-level process being able to inject code into an admin-level process. That is bad on so many levels.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.