Home
last modified time | relevance | path

Searched refs:wcex (Results 1 – 5 of 5) sorted by relevance

/third_party/skia/tools/sk_app/win/
DWindow_win.cpp68 static WNDCLASSEX wcex; in init() local
71 wcex.cbSize = sizeof(WNDCLASSEX); in init()
73 wcex.style = CS_HREDRAW | CS_VREDRAW | CS_OWNDC; in init()
74 wcex.lpfnWndProc = WndProc; in init()
75 wcex.cbClsExtra = 0; in init()
76 wcex.cbWndExtra = 0; in init()
77 wcex.hInstance = fHInstance; in init()
78 wcex.hIcon = LoadIcon(fHInstance, (LPCTSTR)IDI_WINLOGO); in init()
79 wcex.hCursor = LoadCursor(nullptr, IDC_ARROW); in init()
80 wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1); in init()
[all …]
/third_party/cef/tests/shared/browser/
Dmain_message_loop_external_pump_win.cc58 WNDCLASSEX wcex = {}; in MainMessageLoopExternalPumpWin() local
59 wcex.cbSize = sizeof(WNDCLASSEX); in MainMessageLoopExternalPumpWin()
60 wcex.lpfnWndProc = WndProc; in MainMessageLoopExternalPumpWin()
61 wcex.hInstance = hInstance; in MainMessageLoopExternalPumpWin()
62 wcex.lpszClassName = kClassName; in MainMessageLoopExternalPumpWin()
63 RegisterClassEx(&wcex); in MainMessageLoopExternalPumpWin()
/third_party/cef/tests/cefclient/browser/
Dosr_window_win.cc366 WNDCLASSEX wcex; in RegisterOsrClass() local
368 wcex.cbSize = sizeof(WNDCLASSEX); in RegisterOsrClass()
369 wcex.style = CS_OWNDC; in RegisterOsrClass()
370 wcex.lpfnWndProc = OsrWndProc; in RegisterOsrClass()
371 wcex.cbClsExtra = 0; in RegisterOsrClass()
372 wcex.cbWndExtra = 0; in RegisterOsrClass()
373 wcex.hInstance = hInstance; in RegisterOsrClass()
374 wcex.hIcon = nullptr; in RegisterOsrClass()
375 wcex.hCursor = LoadCursor(nullptr, IDC_ARROW); in RegisterOsrClass()
376 wcex.hbrBackground = background_brush; in RegisterOsrClass()
[all …]
Droot_window_win.cc401 WNDCLASSEX wcex; in RegisterRootClass() local
403 wcex.cbSize = sizeof(WNDCLASSEX); in RegisterRootClass()
405 wcex.style = CS_HREDRAW | CS_VREDRAW; in RegisterRootClass()
406 wcex.lpfnWndProc = RootWndProc; in RegisterRootClass()
407 wcex.cbClsExtra = 0; in RegisterRootClass()
408 wcex.cbWndExtra = 0; in RegisterRootClass()
409 wcex.hInstance = hInstance; in RegisterRootClass()
410 wcex.hIcon = LoadIcon(hInstance, MAKEINTRESOURCE(IDI_CEFCLIENT)); in RegisterRootClass()
411 wcex.hCursor = LoadCursor(nullptr, IDC_ARROW); in RegisterRootClass()
412 wcex.hbrBackground = background_brush; in RegisterRootClass()
[all …]
/third_party/cef/libcef/browser/native/
Dbrowser_platform_delegate_native_win.cc524 WNDCLASSEX wcex = { in RegisterWindowClass() local
538 RegisterClassEx(&wcex); in RegisterWindowClass()