Prev Next
The DEBUGHOOKINFO structure contains debugging information passed to a
WH_DEBUG hook procedure, DebugProc.
typedef struct tagDEBUGHOOKINFO { // dh
DWORD idThread;
DWORD idThreadInstaller;
LPARAM lParam;
WPARAM wParam;
int code;
} DEBUGHOOKINFO;
Members
-
idThread
-
Identifies the thread containing the filter function.
-
idThreadInstaller
-
Identifies the thread that installed the debugging filter function.
-
lParam
-
Specifies the value to be passed to the hook in the lParam parameter of
the DebugProc callback function.
-
wParam
-
Specifies the value to be passed to the hook in the wParam parameter of
the DebugProc callback function.
-
code
-
Specifies the value to be passed to the hook in the nCode parameter of
the DebugProc callback function.
See Also
DebugProc, SetWindowsHookEx