Lines Matching refs:wc
79 WNDCLASSEX wc;
80 wc.cbSize = sizeof(WNDCLASSEX);
81 wc.style = CS_HREDRAW | CS_VREDRAW;
82 wc.lpfnWndProc = DefWindowProc;
83 wc.cbClsExtra = 0;
84 wc.cbWndExtra = 0;
85 wc.hInstance = GetModuleHandle(NULL);
86 wc.hIcon = 0;
87 wc.hCursor = 0;
88 wc.hbrBackground = (HBRUSH) GetStockObject(WHITE_BRUSH);
89 wc.lpszMenuName = NULL;
90 wc.lpszClassName = GL_TEMP_WINDOW_CLASS;
91 wc.hIconSm = 0;
92 RegisterClassEx(&wc);
140 WNDCLASSEX wc;
141 wc.cbSize = sizeof(WNDCLASSEX);
142 wc.style = CS_HREDRAW | CS_VREDRAW;
143 wc.lpfnWndProc = DefWindowProc;
144 wc.cbClsExtra = 0;
145 wc.cbWndExtra = 0;
146 wc.hInstance = GetModuleHandle(NULL);
147 wc.hIcon = 0;
148 wc.hCursor = 0;
149 wc.hbrBackground = (HBRUSH) GetStockObject(WHITE_BRUSH);
150 wc.lpszMenuName = NULL;
151 wc.lpszClassName = GL_TEMP_WINDOW_CLASS;
152 wc.hIconSm = 0;
153 RegisterClassEx(&wc);
292 WNDCLASSEX wc;
294 wc.cbSize = sizeof(WNDCLASSEX);
295 wc.style = CS_HREDRAW | CS_VREDRAW;
296 wc.lpfnWndProc = DefWindowProc;
297 wc.cbClsExtra = 0;
298 wc.cbWndExtra = 0;
299 wc.hInstance = GetModuleHandle(NULL);
300 wc.hIcon = 0;
301 wc.hCursor = 0;
302 wc.hbrBackground = (HBRUSH) GetStockObject(WHITE_BRUSH);
303 wc.lpszMenuName = NULL;
304 wc.lpszClassName = WIN_GL_TEST_WINDOW_CLASS;
305 wc.hIconSm = 0;
306 glTestWndClass = RegisterClassEx(&wc);