Home | History | Annotate | Download | only in graw-gdi

Lines Matching refs:wc

69    WNDCLASSEX wc;
86 memset(&wc, 0, sizeof wc);
87 wc.cbSize = sizeof wc;
88 wc.style = CS_OWNDC | CS_HREDRAW | CS_VREDRAW;
89 wc.lpfnWndProc = window_proc;
90 wc.lpszClassName = "graw-gdi";
91 wc.hInstance = GetModuleHandle(NULL);
92 wc.hIcon = LoadIcon(NULL, IDI_APPLICATION);
93 wc.hCursor = LoadCursor(NULL, IDC_ARROW);
94 wc.hbrBackground = (HBRUSH)(COLOR_BTNFACE + 1);
95 RegisterClassEx(&wc);
101 wc.lpszClassName,
102 wc.lpszClassName,
110 wc.hInstance,