Home | History | Annotate | Download | only in directx

Lines Matching defs:wcex

29         WNDCLASSEX wcex;
31 wcex.cbSize = sizeof(WNDCLASSEX);
32 wcex.style = CS_HREDRAW | CS_VREDRAW;
33 wcex.lpfnWndProc = &WinApp::StaticWndProc;
34 wcex.cbClsExtra = 0;
35 wcex.cbWndExtra = 0;
36 wcex.hInstance = m_hInstance;
37 wcex.hIcon = LoadIcon(0, IDI_APPLICATION);
38 wcex.hCursor = LoadCursor(0, IDC_ARROW);
39 wcex.hbrBackground = 0;
40 wcex.lpszMenuName = 0L;
41 wcex.lpszClassName = WINCLASS;
42 wcex.hIconSm = 0;
44 ATOM wc = ::RegisterClassEx(&wcex);