Monday 15 June 2015

c++ - LowLevelKeyboardProc and KeyboardProc -


What is the difference between

low levelkeypierpeak and KeyboardProc ? I'm starting at the win hook and only read the hook overview on the Microsoft site, please, I am being understood as posible: -)

SetWindowsHookEx (WH_KEYBOARD_LL, ...); will capture the event directly from the keyboard driver or simulated keyboard event. I SetWindowsHookEx (WH_KEYBOARD, ...); Captures events after processing those OS

An OS is the deadline for processing low level events and Microsoft recommends you to process at least the event And schedule any important work for a different thread so that the operation of the driver is not interrupted.

High level incidents include repeat counting and there is no time limit for processing the event.


No comments:

Post a Comment