typedef struct tagCBT_CREATEWND { /* cbtcw */
LPCREATESTRUCT 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 data 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.
CBTProc, SetWindowsHook