Tagged Questions

2
votes
2answers
221 views

Is it possible to detect when a low-level keyboard hook has been automatically disconnected by Windows?

I am working on a program that uses keyboard hooks. However, when the PC that the program is running on is just slightly overloaded, it causes Windows to disconnect the hook from the program, causing ...
2
votes
3answers
524 views

Why would Windows hooks not receive certain messages?

Microsoft does not recommend DirectInput for keyboard and mouse input. As such, I've written an input manager class that uses SetWindowsHookEx to hook into WndProc and GetMsg. I believe the hooks are ...
2
votes
3answers
456 views

Simple way to hook registry access for specific process

Is there a simple way to hook registry access of a process that my code executes? I know about SetWindowsHookEx and friends, but its just too complex... I still have hopes that there is a way as ...
1
vote
1answer
26 views

Questions about SetWindowsHookEx() and hooking

Here is a little background information. I'm working on replacing a dll that has been used in a dll injection technique via the AppInit_DLLs registry entry. Its purpose was to be present in every ...
1
vote
1answer
209 views

Horizontal scroll not working mouse_event(MOUSEEVENTF_HWHEEL)

There is no horizontal scroll when I call this method in Delphi 3 under Windows 7: const MOUSEEVENTF_HWHEEL = $1000; mouse_event(MOUSEEVENTF_HWHEEL, 0, 0, 120, 0); Vertical scroll with ...
1
vote
2answers
293 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
4answers
347 views

Is there a way for application on Windows 64 bit to execute code both under 64 bit and 32 bit emulation layer?

I am interested whether I can write an application which will be able to call some code without emulation layer and some code inside of 32 bit emulation layer. The main reason for that is that I will ...
1
vote
1answer
831 views

How to use SetWindowsHookEx in Vista and hook Admin apps with UAC?

I'm trying to figure out if there's a way to use SetWindowsHookEx and be able to affect apps that are run with Admin rights on Vista, with UAC enabled. This is an app that will need to add a small ...
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 ...
0
votes
2answers
239 views

Detect application windows

I use CBT Windows Hook to detect window creation/deletion/min-max/move-size events. I works well, but I need to filter whose events coming from normal widgets. Practically I need to being notified by ...
0
votes
1answer
449 views

Process-wide hook using SetWindowsHookEx

I need to inject a dll into one or more external processes, from which I also want to intercept keybord events. That's why using SetWindowsHookEx with WH_KEYBOARD looks like an easy way to achieve ...
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, ...