Home | History | Annotate | Download | only in win

Lines Matching defs:wcex

328     WNDCLASSEX wcex;
330 wcex.cbSize = sizeof(WNDCLASSEX);
332 wcex.style = CS_HREDRAW | CS_VREDRAW;
333 wcex.lpfnWndProc = hudWndProc;
334 wcex.cbClsExtra = 0;
335 wcex.cbWndExtra = 4;
336 wcex.hInstance = gInstance;
337 wcex.hIcon = 0;
338 wcex.hCursor = LoadCursor(0, IDC_ARROW);
339 wcex.hbrBackground = 0;
340 wcex.lpszMenuName = 0;
341 wcex.lpszClassName = fullscreenVideeoHUDWindowClassName;
342 wcex.hIconSm = 0;
344 RegisterClassEx(&wcex);