Lines Matching refs:wcx
84 WNDCLASSEX wcx; in registerWindowClass() local
86 wcx.cbSize = sizeof(wcx); // size of structure in registerWindowClass()
87 wcx.style = CS_HREDRAW | CS_VREDRAW; // redraw if size changes in registerWindowClass()
88 wcx.lpfnWndProc = DefWindowProc; // points to window procedure in registerWindowClass()
89 wcx.cbClsExtra = 0; // no extra class memory in registerWindowClass()
90 wcx.cbWndExtra = 0; // no extra window memory in registerWindowClass()
91 wcx.hInstance = _hAppInstance; // handle to instance in registerWindowClass()
92 wcx.hIcon = NULL; // predefined app. icon in registerWindowClass()
93 wcx.hCursor = NULL; // predefined arrow in registerWindowClass()
94 wcx.hbrBackground = NULL; // no background brush in registerWindowClass()
95 wcx.lpszMenuName = NULL; // name of menu resource in registerWindowClass()
96 wcx.lpszClassName = L"ODBCConfigMainClass"; // name of window class in registerWindowClass()
97 wcx.hIconSm = NULL; // small class icon in registerWindowClass()
99 return ( NULL != RegisterClassEx( &wcx ) ); in registerWindowClass()