创建窗口时,通过lParam参数传递给WM_CREAT消息的CREATESTRUCT结构体参数。
CREATESTRUCT结构体定义如下:
typedef struct tagCREATESTRUCT {
LPVOID lpCreateParams;
HINSTANCE hInstance;
HMENU hMenu;
HWND hwndParent;
int cy;
int cx;
int y;
int x;
LONG style;
LPCTSTR lpszName;
LPCTSTR lpszClass;
DWORD dwExStyle;
} CREATESTRUCT, *LPCREATESTRUCT;
一般该参数设置为NULL就行。