Lines Matching refs:wcex
68 static WNDCLASSEX wcex; in init() local
71 wcex.cbSize = sizeof(WNDCLASSEX); in init()
73 wcex.style = CS_HREDRAW | CS_VREDRAW | CS_OWNDC; in init()
74 wcex.lpfnWndProc = WndProc; in init()
75 wcex.cbClsExtra = 0; in init()
76 wcex.cbWndExtra = 0; in init()
77 wcex.hInstance = fHInstance; in init()
78 wcex.hIcon = LoadIcon(fHInstance, (LPCTSTR)IDI_WINLOGO); in init()
79 wcex.hCursor = LoadCursor(nullptr, IDC_ARROW); in init()
80 wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1); in init()
81 wcex.lpszMenuName = nullptr; in init()
82 wcex.lpszClassName = gSZWindowClass; in init()
83 wcex.hIconSm = LoadIcon(fHInstance, (LPCTSTR)IDI_WINLOGO); in init()
85 if (!RegisterClassEx(&wcex)) { in init()