Home
last modified time | relevance | path

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

/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/webrtc/webrtc/base/
Dwin32window.cc49 WNDCLASSEX wcex; in Create() local
50 memset(&wcex, 0, sizeof(wcex)); in Create()
51 wcex.cbSize = sizeof(wcex); in Create()
52 wcex.hInstance = instance_; in Create()
53 wcex.lpfnWndProc = &Win32Window::WndProc; in Create()
54 wcex.lpszClassName = kWindowBaseClassName; in Create()
55 window_class_ = ::RegisterClassEx(&wcex); in Create()
/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.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/webrtc/webrtc/modules/desktop_capture/win/
Dscreen_capturer_win_magnifier.cc302 WNDCLASSEX wcex = {}; in InitializeMagnifier() local
303 wcex.cbSize = sizeof(WNDCLASSEX); in InitializeMagnifier()
304 wcex.lpfnWndProc = &DefWindowProc; in InitializeMagnifier()
305 wcex.hInstance = hInstance; in InitializeMagnifier()
306 wcex.hCursor = LoadCursor(NULL, IDC_ARROW); in InitializeMagnifier()
307 wcex.lpszClassName = kMagnifierHostClass; in InitializeMagnifier()
310 RegisterClassEx(&wcex); in InitializeMagnifier()
/external/webrtc/webrtc/examples/peerconnection/client/
Dmain_wnd.cc433 WNDCLASSEX wcex = { sizeof(WNDCLASSEX) }; in RegisterWindowClass() local
434 wcex.style = CS_DBLCLKS; in RegisterWindowClass()
435 wcex.hInstance = GetModuleHandle(NULL); in RegisterWindowClass()
436 wcex.hbrBackground = reinterpret_cast<HBRUSH>(COLOR_WINDOW + 1); in RegisterWindowClass()
437 wcex.hCursor = ::LoadCursor(NULL, IDC_ARROW); in RegisterWindowClass()
438 wcex.lpfnWndProc = &WndProc; in RegisterWindowClass()
439 wcex.lpszClassName = kClassName; in RegisterWindowClass()
440 wnd_class_ = ::RegisterClassEx(&wcex); in RegisterWindowClass()