Home
last modified time | relevance | path

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

/external/webrtc/rtc_base/
Dwin32_window.cc48 WNDCLASSEXW wcex; in Create() local
49 memset(&wcex, 0, sizeof(wcex)); in Create()
50 wcex.cbSize = sizeof(wcex); in Create()
51 if (::GetClassInfoExW(instance_, kWindowBaseClassName, &wcex) && in Create()
56 memset(&wcex, 0, sizeof(wcex)); in Create()
57 wcex.cbSize = sizeof(wcex); in Create()
58 wcex.hInstance = instance_; in Create()
59 wcex.lpfnWndProc = &Win32Window::WndProc; in Create()
60 wcex.lpszClassName = kWindowBaseClassName; in Create()
61 window_class_ = ::RegisterClassExW(&wcex); in Create()
/external/Reactive-Extensions/RxCpp/Rx/v2/examples/win_text/
Dwindows_user.h20 WNDCLASSEX wcex = {}; in Register() local
21 wcex.cbSize = sizeof(WNDCLASSEX); in Register()
24 wcex.style = CS_HREDRAW | CS_VREDRAW; in Register()
25 wcex.hInstance = GetCurrentInstance(); in Register()
26 wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW+1); in Register()
27 wcex.style = 0; in Register()
28 wcex.hIcon = NULL; in Register()
29 wcex.hCursor = LoadCursor(NULL, IDC_ARROW); in Register()
30 wcex.lpszMenuName = NULL; in Register()
32 Type::change_class(wcex); in Register()
[all …]
/external/google-breakpad/src/client/windows/tests/crash_generation_app/
Dcrash_generation_app.cc93 WNDCLASSEX wcex; in MyRegisterClass() local
94 wcex.cbSize = sizeof(WNDCLASSEX); in MyRegisterClass()
95 wcex.style = CS_HREDRAW | CS_VREDRAW; in MyRegisterClass()
96 wcex.lpfnWndProc = WndProc; in MyRegisterClass()
97 wcex.cbClsExtra = 0; in MyRegisterClass()
98 wcex.cbWndExtra = 0; in MyRegisterClass()
99 wcex.hInstance = instance; in MyRegisterClass()
100 wcex.hIcon = LoadIcon(instance, in MyRegisterClass()
102 wcex.hCursor = LoadCursor(NULL, IDC_ARROW); in MyRegisterClass()
103 wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW+1); in MyRegisterClass()
[all …]
/external/skqp/tools/sk_app/win/
DWindow_win.cpp66 static WNDCLASSEX wcex; in init() local
69 wcex.cbSize = sizeof(WNDCLASSEX); in init()
71 wcex.style = CS_HREDRAW | CS_VREDRAW | CS_OWNDC; in init()
72 wcex.lpfnWndProc = WndProc; in init()
73 wcex.cbClsExtra = 0; in init()
74 wcex.cbWndExtra = 0; in init()
75 wcex.hInstance = fHInstance; in init()
76 wcex.hIcon = LoadIcon(fHInstance, (LPCTSTR)IDI_WINLOGO); in init()
77 wcex.hCursor = LoadCursor(nullptr, IDC_ARROW); in init()
78 wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1); in init()
[all …]
/external/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 …]
/external/webrtc/modules/desktop_capture/win/
Dscreen_capturer_win_magnifier.cc260 WNDCLASSEXW wcex = {}; in InitializeMagnifier() local
261 wcex.cbSize = sizeof(WNDCLASSEX); in InitializeMagnifier()
262 wcex.lpfnWndProc = &DefWindowProc; in InitializeMagnifier()
263 wcex.hInstance = hInstance; in InitializeMagnifier()
264 wcex.hCursor = LoadCursor(nullptr, IDC_ARROW); in InitializeMagnifier()
265 wcex.lpszClassName = kMagnifierHostClass; in InitializeMagnifier()
268 RegisterClassExW(&wcex); in InitializeMagnifier()
/external/webrtc/examples/peerconnection/client/
Dmain_wnd.cc445 WNDCLASSEXW wcex = {sizeof(WNDCLASSEX)}; in RegisterWindowClass() local
446 wcex.style = CS_DBLCLKS; in RegisterWindowClass()
447 wcex.hInstance = GetModuleHandle(NULL); in RegisterWindowClass()
448 wcex.hbrBackground = reinterpret_cast<HBRUSH>(COLOR_WINDOW + 1); in RegisterWindowClass()
449 wcex.hCursor = ::LoadCursor(NULL, IDC_ARROW); in RegisterWindowClass()
450 wcex.lpfnWndProc = &WndProc; in RegisterWindowClass()
451 wcex.lpszClassName = kClassName; in RegisterWindowClass()
452 wnd_class_ = ::RegisterClassExW(&wcex); in RegisterWindowClass()