Lines Matching refs:wndClass
49 WNDCLASS wndClass; in Window() local
50 memset(&wndClass, 0, sizeof(wndClass)); in Window()
51 wndClass.style = CS_HREDRAW | CS_VREDRAW | CS_OWNDC; in Window()
52 wndClass.lpfnWndProc = windowProcCallback; in Window()
53 wndClass.cbClsExtra = 0; in Window()
54 wndClass.cbWndExtra = 0; in Window()
55 wndClass.hInstance = instance; in Window()
56 wndClass.hIcon = LoadIcon(NULL, IDI_APPLICATION); in Window()
57 wndClass.hCursor = LoadCursor(NULL, IDC_ARROW); in Window()
58 wndClass.hbrBackground = CreateSolidBrush(RGB(0, 0, 0)); in Window()
59 wndClass.lpszMenuName = NULL; in Window()
60 wndClass.lpszClassName = s_className; in Window()
62 RegisterClass(&wndClass); in Window()