Searched refs:wcx (Results 1 – 1 of 1) sorted by relevance
82 WNDCLASSEX wcx; in registerWindowClass() local84 wcx.cbSize = sizeof(wcx); // size of structure in registerWindowClass()85 wcx.style = CS_HREDRAW | CS_VREDRAW; // redraw if size changes in registerWindowClass()86 wcx.lpfnWndProc = DefWindowProc; // points to window procedure in registerWindowClass()87 wcx.cbClsExtra = 0; // no extra class memory in registerWindowClass()88 wcx.cbWndExtra = 0; // no extra window memory in registerWindowClass()89 wcx.hInstance = _hAppInstance; // handle to instance in registerWindowClass()90 wcx.hIcon = NULL; // predefined app. icon in registerWindowClass()91 wcx.hCursor = NULL; // predefined arrow in registerWindowClass()92 wcx.hbrBackground = NULL; // no background brush in registerWindowClass()[all …]