Home
last modified time | relevance | path

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

/external/lzma/CPP/Windows/
DWindow.cpp17 ATOM MyRegisterClass(CONST WNDCLASSW *wndClass) in MyRegisterClass() argument
20 return RegisterClassW(wndClass); in MyRegisterClass()
22 wndClassA.style = wndClass->style; in MyRegisterClass()
23 wndClassA.lpfnWndProc = wndClass->lpfnWndProc; in MyRegisterClass()
24 wndClassA.cbClsExtra = wndClass->cbClsExtra; in MyRegisterClass()
25 wndClassA.cbWndExtra = wndClass->cbWndExtra; in MyRegisterClass()
26 wndClassA.hInstance = wndClass->hInstance; in MyRegisterClass()
27 wndClassA.hIcon = wndClass->hIcon; in MyRegisterClass()
28 wndClassA.hCursor = wndClass->hCursor; in MyRegisterClass()
29 wndClassA.hbrBackground = wndClass->hbrBackground; in MyRegisterClass()
[all …]
DWindow.h31 inline ATOM MyRegisterClass(CONST WNDCLASS *wndClass) in MyRegisterClass() argument
32 { return ::RegisterClass(wndClass); } in MyRegisterClass()
35 ATOM MyRegisterClass(CONST WNDCLASSW *wndClass);
/external/deqp/framework/platform/win32/
DtcuWin32Window.cpp49 WNDCLASS wndClass; in Window() local
50 memset(&wndClass, 0, sizeof(wndClass)); in Window()
51 wndClass.style = CS_HREDRAW | CS_VREDRAW | CS_OWNDC; in Window()
52 wndClass.lpfnWndProc = windowProcCallback; in Window()
53 wndClass.cbClsExtra = 0; in Window()
54 wndClass.cbWndExtra = 0; in Window()
55 wndClass.hInstance = instance; in Window()
56 wndClass.hIcon = LoadIcon(NULL, IDI_APPLICATION); in Window()
57 wndClass.hCursor = LoadCursor(NULL, IDC_ARROW); in Window()
58 wndClass.hbrBackground = CreateSolidBrush(RGB(0, 0, 0)); in Window()
[all …]
/external/swiftshader/tests/OGLSimpleCube/
DOGLSimpleCube.cpp182 WNDCLASS wndClass; in WinMain() local
187 wndClass.style = CS_OWNDC | CS_HREDRAW | CS_VREDRAW; in WinMain()
188 wndClass.lpfnWndProc = WndProc; in WinMain()
189 wndClass.cbClsExtra = 0; in WinMain()
190 wndClass.cbWndExtra = 0; in WinMain()
191 wndClass.hInstance = hCurrentInst; in WinMain()
192 wndClass.hIcon = LoadIcon(NULL, IDI_APPLICATION); in WinMain()
193 wndClass.hCursor = LoadCursor(NULL, IDC_ARROW); in WinMain()
194 wndClass.hbrBackground = (HBRUSH)BLACK_BRUSH; in WinMain()
195 wndClass.lpszMenuName = NULL; in WinMain()
[all …]
/external/lzma/CPP/Windows/Control/
DWindow2.cpp18 ATOM MyRegisterClass(CONST WNDCLASSW *wndClass);