Home | History | Annotate | Download | only in gregbook

Lines Matching refs:wndclass

701     WNDCLASSEX wndclass;
758 memset(&wndclass, 0, sizeof(wndclass));
760 wndclass.cbSize = sizeof(wndclass);
761 wndclass.style = CS_HREDRAW | CS_VREDRAW;
762 wndclass.lpfnWndProc = rpng2_win_wndproc;
763 wndclass.hInstance = global_hInst;
764 wndclass.hIcon = LoadIcon(NULL, IDI_APPLICATION);
765 wndclass.hCursor = LoadCursor(NULL, IDC_ARROW);
766 wndclass.hbrBackground = (HBRUSH)GetStockObject(DKGRAY_BRUSH);
767 wndclass.lpszMenuName = NULL;
768 wndclass.lpszClassName = progname;
769 wndclass.hIconSm = LoadIcon(NULL, IDI_APPLICATION);
771 RegisterClassEx(&wndclass);