Monday, December 19, 2005

WNDCLASS Structure

Contains the window class attributes that are registered by the RegisterClass function

WNDCLASSEX - used with RegisterClassEx and GetClassInfoEx functions

typedef struct {
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;

0 Comments:

Post a Comment

<< Home