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