Home | History | Annotate | Download | only in win

Lines Matching refs:wcex

298     WNDCLASS wcex = { 0 };
300 WNDCLASSEX wcex;
301 wcex.cbSize = sizeof(WNDCLASSEX);
302 wcex.hIconSm = 0;
305 wcex.style = CS_DBLCLKS;
307 wcex.style |= CS_PARENTDC;
309 wcex.lpfnWndProc = DefWindowProc;
310 wcex.cbClsExtra = 0;
311 wcex.cbWndExtra = 0;
312 wcex.hInstance = Page::instanceHandle();
313 wcex.hIcon = 0;
314 wcex.hCursor = LoadCursor(0, IDC_ARROW);
315 wcex.hbrBackground = (HBRUSH)COLOR_WINDOW;
316 wcex.lpszMenuName = 0;
317 wcex.lpszClassName = kWebPluginViewdowClassName;
320 return !!RegisterClass(&wcex);
322 return !!RegisterClassEx(&wcex);