Searched refs:wndClsEx (Results 1 – 3 of 3) sorted by relevance
411 WNDCLASSEX wndClsEx; in RegisterDibPreviewWindowClass() local412 ZeroMemory(&wndClsEx, sizeof(wndClsEx)); in RegisterDibPreviewWindowClass()414 wndClsEx.cbSize = sizeof(wndClsEx); in RegisterDibPreviewWindowClass()415 wndClsEx.style = CS_HREDRAW | CS_VREDRAW; in RegisterDibPreviewWindowClass()416 wndClsEx.lpfnWndProc = CDIBPreview::WndProc; in RegisterDibPreviewWindowClass()417 wndClsEx.hInstance = m_Instance; in RegisterDibPreviewWindowClass()418 wndClsEx.hbrBackground = (HBRUSH)(COLOR_INACTIVEBORDER + 1); in RegisterDibPreviewWindowClass()419 wndClsEx.lpszClassName = PREVIEWWND_CLASS_NAME; in RegisterDibPreviewWindowClass()426 s_ClassAtom = RegisterClassEx(&wndClsEx); in RegisterDibPreviewWindowClass()
251 WNDCLASSEX wndClsEx; in CFilePreview() local252 ZeroMemory(&wndClsEx, sizeof(wndClsEx)); in CFilePreview()254 wndClsEx.cbSize = sizeof(wndClsEx); in CFilePreview()255 wndClsEx.style = CS_HREDRAW | CS_VREDRAW; in CFilePreview()256 wndClsEx.lpfnWndProc = CFilePreview::WndProc; in CFilePreview()257 wndClsEx.hInstance = m_hInstance; in CFilePreview()258 wndClsEx.hbrBackground = (HBRUSH)( COLOR_INACTIVEBORDER + 1 ); in CFilePreview()259 wndClsEx.lpszClassName = PREVIEWWND_CLASS_NAME; in CFilePreview()266 m_atomPrevWndClass = RegisterClassEx(&wndClsEx); in CFilePreview()
552 WNDCLASSEX wndClsEx; in RegisterWindowClass() local554 ZeroMemory(&wndClsEx, sizeof(wndClsEx)); in RegisterWindowClass()556 wndClsEx.cbSize = sizeof(wndClsEx); in RegisterWindowClass()557 wndClsEx.lpfnWndProc = CHelpPopupWindow::WndProc; in RegisterWindowClass()558 wndClsEx.hInstance = m_hInstance; in RegisterWindowClass()559 wndClsEx.hCursor = LoadCursor(NULL, IDC_ARROW); in RegisterWindowClass()560 wndClsEx.hbrBackground = (HBRUSH)GetStockObject( NULL_BRUSH ); in RegisterWindowClass()561 wndClsEx.lpszClassName = HELPPOPUPWND_CLASS_NAME; in RegisterWindowClass()568 s_ClassAtom = RegisterClassEx( &wndClsEx ); in RegisterWindowClass()
Completed in 48 milliseconds