Home | History | Annotate | Download | only in win

Lines Matching defs:wc

54         WNDCLASS wc;
55 wc.cbClsExtra = 0;
56 wc.cbWndExtra = 0;
57 wc.hbrBackground = NULL;
58 wc.hCursor = LoadCursor(NULL, IDC_ARROW);
59 wc.hIcon = LoadIcon(NULL, IDI_APPLICATION);
60 wc.hInstance = hInstance;
61 wc.lpfnWndProc = (WNDPROC) DefWindowProc;
62 wc.lpszClassName = TEXT("Griffin");
63 wc.lpszMenuName = NULL;
64 wc.style = CS_HREDRAW | CS_VREDRAW | CS_OWNDC;
66 gWC = RegisterClass(&wc);