Home | History | Annotate | Download | only in win

Lines Matching defs:wcex

308     WNDCLASSEX wcex;
310 wcex.cbSize = sizeof(WNDCLASSEX);
312 wcex.style = CS_HREDRAW | CS_VREDRAW;
313 wcex.lpfnWndProc = DumpRenderTreeWndProc;
314 wcex.cbClsExtra = 0;
315 wcex.cbWndExtra = 0;
316 wcex.hInstance = GetModuleHandle(0);
317 wcex.hIcon = 0;
318 wcex.hCursor = LoadCursor(0, IDC_ARROW);
319 wcex.hbrBackground = 0;
320 wcex.lpszMenuName = 0;
321 wcex.lpszClassName = kDumpRenderTreeClassName;
322 wcex.hIconSm = 0;
324 RegisterClassEx(&wcex);