Home | History | Annotate | Download | only in layout

Lines Matching full:wndclass

75     WNDCLASS wndclass;
78 wndclass.style = CS_HREDRAW | CS_VREDRAW;
79 wndclass.lpfnWndProc = WndProc;
80 wndclass.cbClsExtra = 0;
81 wndclass.cbWndExtra = sizeof(LONG);
82 wndclass.hInstance = hInstance;
83 wndclass.hIcon = LoadIcon(NULL, IDI_APPLICATION);
84 wndclass.hCursor = LoadCursor(NULL, IDC_ARROW);
85 wndclass.hbrBackground = (HBRUSH) GetStockObject(WHITE_BRUSH);
86 wndclass.lpszMenuName = szAppName;
87 wndclass.lpszClassName = szAppName;
89 if (!RegisterClass(&wndclass)) {