Passes the hook information to the next hook procedure in the current hook chain
#include <WinAPISys.au3>
_WinAPI_CallNextHookEx ( $hHook, $iCode, $wParam, $lParam )
$hHook | Parameter ignored. |
$iCode | Specifies the hook code passed to the current hook procedure. The next hook procedure uses this code to determine how to process the hook information |
$wParam | Specifies the wParam value passed to the current hook procedure. The meaning of this parameter depends on the type of hook associated with the current hook chain |
$lParam | Specifies the lParam value passed to the current hook procedure. The meaning of this parameter depends on the type of hook associated with the current hook chain |
$tagKBDLLHOOKSTRUCT, _WinAPI_SetWindowsHookEx
Search CallNextHookEx in MSDN Library.