CBT_CREATEWND structure
Contains information passed to a WH_CBT hook procedure, CBTProc, before a window is created.
Syntax
typedef struct tagCBT_CREATEWND { LPCREATESTRUCT lpcs; HWND hwndInsertAfter; } CBT_CREATEWND, *LPCBT_CREATEWND;
Members
- lpcs
-
Type: LPCREATESTRUCT
-
A pointer to a CREATESTRUCT structure that contains initialization parameters for the window about to be created.
- hwndInsertAfter
-
Type: HWND
-
A handle to the window whose position in the Z order precedes that of the window being created. This member can also be NULL.
Requirements
|
Minimum supported client |
Windows 2000 Professional [desktop apps only] |
|---|---|
|
Minimum supported server |
Windows 2000 Server [desktop apps only] |
|
Header |
|
|
Unicode and ANSI names |
CBT_CREATEWNDW (Unicode) and CBT_CREATEWNDA (ANSI) |
See also
- Reference
- CBTProc
- CREATESTRUCT
- SetWindowsHookEx
- Conceptual
- Hooks