Home | History | Annotate | Download | only in win

Lines Matching defs:wcex

76     WNDCLASSEX wcex;
78 wcex.cbSize = sizeof(WNDCLASSEX);
80 wcex.style = CS_HREDRAW | CS_VREDRAW;
81 wcex.lpfnWndProc = WndProc;
82 wcex.cbClsExtra = 0;
83 wcex.cbWndExtra = 0;
84 wcex.hInstance = hInstance;
85 wcex.hIcon = NULL;
86 wcex.hCursor = NULL;
87 wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW+1);
88 wcex.lpszMenuName = NULL;
89 wcex.lpszClassName = szWindowClass;
90 wcex.hIconSm = NULL;
92 return RegisterClassEx(&wcex);