OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:wcex
(Results
1 - 7
of
7
) sorted by null
/external/opencv3/samples/directx/
winapp.hpp
29
WNDCLASSEX
wcex
;
local
31
wcex
.cbSize = sizeof(WNDCLASSEX);
32
wcex
.style = CS_HREDRAW | CS_VREDRAW;
33
wcex
.lpfnWndProc = &WinApp::StaticWndProc;
34
wcex
.cbClsExtra = 0;
35
wcex
.cbWndExtra = 0;
36
wcex
.hInstance = m_hInstance;
37
wcex
.hIcon = LoadIcon(0, IDI_APPLICATION);
38
wcex
.hCursor = LoadCursor(0, IDC_ARROW);
39
wcex
.hbrBackground = 0
[
all
...]
/external/webrtc/webrtc/base/
win32window.cc
49
WNDCLASSEX
wcex
;
local
50
memset(&
wcex
, 0, sizeof(
wcex
));
51
wcex
.cbSize = sizeof(
wcex
);
52
wcex
.hInstance = instance_;
53
wcex
.lpfnWndProc = &Win32Window::WndProc;
54
wcex
.lpszClassName = kWindowBaseClassName;
55
window_class_ = ::RegisterClassEx(&
wcex
);
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d10app/
d3d10winmain.cpp
63
WNDCLASSEXA
wcex
;
local
65
wcex
.cbSize = sizeof(WNDCLASSEX);
67
wcex
.style = CS_HREDRAW | CS_VREDRAW;
68
wcex
.lpfnWndProc = WndProc;
69
wcex
.cbClsExtra = 0;
70
wcex
.cbWndExtra = 0;
71
wcex
.hInstance = hInstance;
72
wcex
.hIcon = 0;
73
wcex
.hCursor = LoadCursor(NULL, IDC_ARROW);
74
wcex
.hbrBackground = (HBRUSH)(COLOR_WINDOW+1)
[
all
...]
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11app/
d3d11winmain.cpp
63
WNDCLASSEXA
wcex
;
local
65
wcex
.cbSize = sizeof(WNDCLASSEX);
67
wcex
.style = CS_HREDRAW | CS_VREDRAW;
68
wcex
.lpfnWndProc = WndProc;
69
wcex
.cbClsExtra = 0;
70
wcex
.cbWndExtra = 0;
71
wcex
.hInstance = hInstance;
72
wcex
.hIcon = 0;
73
wcex
.hCursor = LoadCursor(NULL, IDC_ARROW);
74
wcex
.hbrBackground = (HBRUSH)(COLOR_WINDOW+1)
[
all
...]
/external/skia/src/views/win/
skia_win.cpp
19
WNDCLASSEX
wcex
;
local
23
wcex
.cbSize = sizeof(WNDCLASSEX);
25
wcex
.style = CS_HREDRAW | CS_VREDRAW | CS_OWNDC;
26
wcex
.lpfnWndProc = WndProc;
27
wcex
.cbClsExtra = 0;
28
wcex
.cbWndExtra = 0;
29
wcex
.hInstance = hInstance;
30
wcex
.hIcon = NULL;
31
wcex
.hCursor = NULL;
32
wcex
.hbrBackground = (HBRUSH)(COLOR_WINDOW+1)
[
all
...]
/external/webrtc/webrtc/modules/desktop_capture/win/
screen_capturer_win_magnifier.cc
302
WNDCLASSEX
wcex
= {};
local
303
wcex
.cbSize = sizeof(WNDCLASSEX);
304
wcex
.lpfnWndProc = &DefWindowProc;
305
wcex
.hInstance = hInstance;
306
wcex
.hCursor = LoadCursor(NULL, IDC_ARROW);
307
wcex
.lpszClassName = kMagnifierHostClass;
310
RegisterClassEx(&
wcex
);
/external/google-breakpad/src/client/windows/tests/crash_generation_app/
crash_generation_app.cc
93
WNDCLASSEX
wcex
;
local
94
wcex
.cbSize = sizeof(WNDCLASSEX);
95
wcex
.style = CS_HREDRAW | CS_VREDRAW;
96
wcex
.lpfnWndProc = WndProc;
97
wcex
.cbClsExtra = 0;
98
wcex
.cbWndExtra = 0;
99
wcex
.hInstance = instance;
100
wcex
.hIcon = LoadIcon(instance,
102
wcex
.hCursor = LoadCursor(NULL, IDC_ARROW);
103
wcex
.hbrBackground = (HBRUSH)(COLOR_WINDOW+1)
[
all
...]
Completed in 1583 milliseconds