Home | History | Annotate | Download | only in win

Lines Matching defs:wcex

19     WNDCLASSEX wcex;
23 wcex.cbSize = sizeof(WNDCLASSEX);
25 wcex.style = CS_HREDRAW | CS_VREDRAW | CS_OWNDC;
26 wcex.lpfnWndProc = WndProc;
27 wcex.cbClsExtra = 0;
28 wcex.cbWndExtra = 0;
29 wcex.hInstance = hInstance;
30 wcex.hIcon = NULL;
31 wcex.hCursor = NULL;
32 wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW+1);
33 wcex.lpszMenuName = NULL;
34 wcex.lpszClassName = gSZWindowClass;
35 wcex.hIconSm = NULL;
37 RegisterClassEx(&wcex);