@msdn=http://msdn.microsoft.com/library/en-us/winui/winui/windowsuserinterface/windowing/hooks/hookreference/hookfunctions/lowlevelkeyboardproc.asp @pinvoke=http://pinvoke.net/$$$.htm Summary: Hook procedure for the WH_KEYBOARD_LL hook !!!!C# Definition: private delegate int LowLevelKeyboardProc(int nCode,WindowsMessages wParam, [In] KBDLLHOOKSTRUCT lParam); !!!!VB.NET Definition: Private Delegate Function LowLevelKeyboardProc(ByVal nCode As Integer, ByVal wParam As WindowsMessages, <[In]> ByVal lParam As KBDLLHOOKSTRUCT) As Integer !!!!User-Defined Types: WindowsMessages the type of event. This will be WM_KEYDOWN, WM_KEYUP, WM_SYSKEYDOWN or WM_SYSKEYUP [KBDLLHOOKSTRUCT] contains details of the key !!!!Notes: See SetWindowsHookEx, CallNextHookEx Documentation: LowLevelKeyboardProc@msdn on MSDN
Edit Delegates.LowLeve...
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.