Home | History | Annotate | Download | only in layout

Lines Matching full:wndclass

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