typedef struct tagCBT_CREATEWND { /* cbtcw */
CREATESTRUCT FAR* lpcs;
HWND hwndInsertAfter;
} CBT_CREATEWND;
The CBT_CREATEWND structure contains information passed to a WH_CBT hook function before a window is created.
lpcs
Points to a CREATESTRUCT structure that contains initialization parameters for the window about to be created.
hwndInsertAfter
Identifies a window in the window manager's list that will precede the window being created. If this parameter is NULL, the window being created is the topmost window. If this parameter is 1, the window being created is the bottommost window.