Home | History | Annotate | Download | only in gregbook

Lines Matching full:wndclass

670     WNDCLASSEX wndclass;
727 memset(&wndclass, 0, sizeof(wndclass));
729 wndclass.cbSize = sizeof(wndclass);
730 wndclass.style = CS_HREDRAW | CS_VREDRAW;
731 wndclass.lpfnWndProc = rpng2_win_wndproc;
732 wndclass.hInstance = global_hInst;
733 wndclass.hIcon = LoadIcon(NULL, IDI_APPLICATION);
734 wndclass.hCursor = LoadCursor(NULL, IDC_ARROW);
735 wndclass.hbrBackground = (HBRUSH)GetStockObject(DKGRAY_BRUSH);
736 wndclass.lpszMenuName = NULL;
737 wndclass.lpszClassName = progname;
738 wndclass.hIconSm = LoadIcon(NULL, IDI_APPLICATION);
740 RegisterClassEx(&wndclass);