Lines Matching refs:wndc
238 WNDCLASS wndc; in cvInitSystem() local
239 wndc.style = CS_OWNDC | CS_VREDRAW | CS_HREDRAW | CS_DBLCLKS; in cvInitSystem()
240 wndc.lpfnWndProc = WindowProc; in cvInitSystem()
241 wndc.cbClsExtra = 0; in cvInitSystem()
242 wndc.cbWndExtra = 0; in cvInitSystem()
243 wndc.hInstance = hg_hinstance; in cvInitSystem()
244 wndc.lpszClassName = highGUIclassName; in cvInitSystem()
245 wndc.lpszMenuName = highGUIclassName; in cvInitSystem()
246 wndc.hIcon = LoadIcon(0, IDI_APPLICATION); in cvInitSystem()
247 wndc.hCursor = (HCURSOR)LoadCursor(0, (LPSTR)(size_t)IDC_CROSS ); in cvInitSystem()
248 wndc.hbrBackground = (HBRUSH)GetStockObject(GRAY_BRUSH); in cvInitSystem()
250 RegisterClass(&wndc); in cvInitSystem()
252 wndc.lpszClassName = mainHighGUIclassName; in cvInitSystem()
253 wndc.lpszMenuName = mainHighGUIclassName; in cvInitSystem()
254 wndc.hbrBackground = (HBRUSH)GetStockObject(GRAY_BRUSH); in cvInitSystem()
255 wndc.lpfnWndProc = MainWindowProc; in cvInitSystem()
257 RegisterClass(&wndc); in cvInitSystem()