Click or drag to resize
Xcalibur Systems LLC Logo

EventHelperCallNextHookEx Method

Passes the hook information to the next hook procedure in the current hook chain. A hook procedure can call this function either before or after processing the hook information.

CallNextHookEx function


Namespace: Xcalibur.NativeMethods.V2.Events
Assembly: Xcalibur.NativeMethods.V2 (in Xcalibur.NativeMethods.V2.dll) Version: 1.0.1.0
Syntax
[DllImportAttribute("user32.dll", CallingConvention = CallingConvention.StdCall, 
	CharSet = CharSet.Auto)]
public static int CallNextHookEx(
	int idHook,
	int code,
	IntPtr wParam,
	IntPtr lParam
)

Parameters

idHook  Int32
This parameter is ignored.
code  Int32
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  IntPtr
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  IntPtr
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.

Return Value

Int32
See Also