Home | History | Annotate | Download | only in win

Lines Matching refs:windowClass

108     WNDCLASSEX windowClass = { 0 };
109 windowClass.cbSize = sizeof(windowClass);
110 windowClass.style = 0;
111 windowClass.lpfnWndProc = BrowserWindowWndProc;
112 windowClass.cbClsExtra = 0;
113 windowClass.cbWndExtra = sizeof(this);
114 windowClass.hInstance = MiniBrowser::shared().instance();
115 windowClass.hIcon = 0;
116 windowClass.hCursor = ::LoadCursor(0, IDC_ARROW);
117 windowClass.hbrBackground = (HBRUSH)::GetStockObject(WHITE_BRUSH);
118 windowClass.lpszMenuName = MAKEINTRESOURCE(IDR_MAINFRAME);
119 windowClass.lpszClassName = L"MiniBrowser";
120 windowClass.hIconSm = 0;
122 ::RegisterClassEx(&windowClass);