DelegatesHookProc Delegate
Namespace: DevCase.Win32.DelegatesAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public delegate IntPtr HookProc(
int nCode,
IntPtr wParam,
IntPtr lParam
)
Public Delegate Function HookProc (
nCode As Integer,
wParam As IntPtr,
lParam As IntPtr
) As IntPtr
Dim instance As New HookProc(AddressOf HandlerMethod)
public delegate IntPtr HookProc(
int nCode,
IntPtr wParam,
IntPtr lParam
)
type HookProc =
delegate of
nCode : int *
wParam : IntPtr *
lParam : IntPtr -> IntPtr
No code example is currently available or this language may not be supported.
- nCode Int32
-
The hook code of the current DelegatesHookProc procedure.
So the next call to DelegatesHookProc procedure uses this code to determine how to process the hook information.
- wParam IntPtr
-
The wParam value passed to the current DelegatesHookProc 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 DelegatesHookProc procedure.
The meaning of this parameter depends on the type of hook associated with the current hook chain.
IntPtr
The meaning of the return value depends on the hook type.
For more information, see the descriptions of the individual hook procedures.