|
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.EventsAssembly: 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
)
<DllImportAttribute("user32.dll", CallingConvention := CallingConvention.StdCall,
CharSet := CharSet.Auto>]
Public Shared Function CallNextHookEx (
idHook As Integer,
code As Integer,
wParam As IntPtr,
lParam As IntPtr
) As Integer
public:
[DllImportAttribute(L"user32.dll", CallingConvention = CallingConvention::StdCall,
CharSet = CharSet::Auto)]
static int CallNextHookEx(
int idHook,
int code,
IntPtr wParam,
IntPtr lParam
)
[<DllImportAttribute("user32.dll", CallingConvention = CallingConvention.StdCall,
CharSet = CharSet.Auto)>]
static member CallNextHookEx :
idHook : int *
code : int *
wParam : IntPtr *
lParam : IntPtr -> int
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
Int32See Also