[Win32 API] WNDCLASSEX Structure
Contain window class information. It is used with the RegisterClassEx and GetClassInfoEx functions. The WNDCLASSEX structure is similar to the WNDCLASS structure. There are two differences. WNDCASSEX include the cbSize member, which specifies the size of the structure, and the hIconSm member, which contains a handle to a small icon associated withe the window class. Syntax typedef struct tagWNDCLASSEX { UINT cbSize; UINT style; WNDPROC lpfnWndProc; int cbClsExtra; int cbWndExtra; HINSTANCE hInstance; HICON hIcon; HCURSOR hCursor; HBRUSH hbrBackground; LPCTSTR lpszMenuName; LPCTSTR lpszClassName; HICON hIconSm; } WNDCLASSEX, *PWNDCLASSEX; Members cbSize : The size, in bytes, of this structure. Set this member to s...