typedef struct tagWNDCLASSEXW{ UINT cbSize; /* Win 3.x */ UINT style; WNDPROC lpfnWndProc; int cbClsExtra; int cbWndExtra; HINSTANCE hInstance; HICON hIcon; HCURSOR hCUrsor; HBRUSH hBrBackground; LPCWSTR lpszMenuName; LPCWSTR lpszClassName; /* Win 4.0 */ HICON hIconSm; } WNDCLASSEX, *PWNDCLASSEXW, NEAR *NPWNDCLASSEXW, FAR *LPWNDCLASSEXW;
- WinUser.h 에 정의
- 구조체 요약 → 윈도우의 스타일, 윈도우 프로시저 함수의 주소, 인스턴스의 핸들, 메인(Main)아이콘과 커서(마우스 포인터), 배경색, 윈도우 클래스등
'Programming > MFC' 카테고리의 다른 글
CWinAPP::ProcessShellCommand 함수 (0) | 2011.06.16 |
---|---|
MSG 구조체 (0) | 2011.01.27 |
CALLBACK 상수 (0) | 2011.01.27 |
Hello World (0) | 2011.01.24 |