Reputation:
What is the best way to do system wide user mode (NOT KERNEL MODE) api hook on Windows NT?
Upvotes: 2
Views: 2242
Reputation: 4667
Upvotes: 0
Reputation: 564323
Normally, you'd do this using SetWindowsHookEx. This allows you to hook into all applications on the current desktop.
There are other options, though. This CodeProject article has a lot of details on hooking mechanisms.
Upvotes: 3