Home | History | Annotate | Download | only in gregbook

Lines Matching full:wndclass

445     WNDCLASSEX wndclass;
495 memset(&wndclass, 0, sizeof(wndclass));
497 wndclass.cbSize = sizeof(wndclass);
498 wndclass.style = CS_HREDRAW | CS_VREDRAW;
499 wndclass.lpfnWndProc = rpng_win_wndproc;
500 wndclass.hInstance = hInst;
501 wndclass.hIcon = LoadIcon(NULL, IDI_APPLICATION);
502 wndclass.hCursor = LoadCursor(NULL, IDC_ARROW);
503 wndclass.hbrBackground = (HBRUSH)GetStockObject(DKGRAY_BRUSH);
504 wndclass.lpszMenuName = NULL;
505 wndclass.lpszClassName = progname;
506 wndclass.hIconSm = LoadIcon(NULL, IDI_APPLICATION);
508 RegisterClassEx(&wndclass);