Searched refs:wndclass (Results 1 – 7 of 7) sorted by relevance
/external/icu/icu4c/source/samples/layout/ |
D | layout.cpp | 81 WNDCLASS wndclass; in WinMain() local 84 wndclass.style = CS_HREDRAW | CS_VREDRAW; in WinMain() 85 wndclass.lpfnWndProc = WndProc; in WinMain() 86 wndclass.cbClsExtra = 0; in WinMain() 87 wndclass.cbWndExtra = sizeof(LONG); in WinMain() 88 wndclass.hInstance = hInstance; in WinMain() 89 wndclass.hIcon = LoadIcon(NULL, IDI_APPLICATION); in WinMain() 90 wndclass.hCursor = LoadCursor(NULL, IDC_ARROW); in WinMain() 91 wndclass.hbrBackground = (HBRUSH) GetStockObject(WHITE_BRUSH); in WinMain() 92 wndclass.lpszMenuName = szAppName; in WinMain() [all …]
|
D | clayout.c | 82 WNDCLASS wndclass; in WinMain() local 85 wndclass.style = CS_HREDRAW | CS_VREDRAW; in WinMain() 86 wndclass.lpfnWndProc = WndProc; in WinMain() 87 wndclass.cbClsExtra = 0; in WinMain() 88 wndclass.cbWndExtra = sizeof(LONG); in WinMain() 89 wndclass.hInstance = hInstance; in WinMain() 90 wndclass.hIcon = LoadIcon(NULL, IDI_APPLICATION); in WinMain() 91 wndclass.hCursor = LoadCursor(NULL, IDC_ARROW); in WinMain() 92 wndclass.hbrBackground = (HBRUSH) GetStockObject(WHITE_BRUSH); in WinMain() 93 wndclass.lpszMenuName = szAppName; in WinMain() [all …]
|
/external/libpng/contrib/gregbook/ |
D | rpng-win.c | 490 WNDCLASSEX wndclass; in rpng_win_create_window() local 546 memset(&wndclass, 0, sizeof(wndclass)); in rpng_win_create_window() 548 wndclass.cbSize = sizeof(wndclass); in rpng_win_create_window() 549 wndclass.style = CS_HREDRAW | CS_VREDRAW; in rpng_win_create_window() 550 wndclass.lpfnWndProc = rpng_win_wndproc; in rpng_win_create_window() 551 wndclass.hInstance = hInst; in rpng_win_create_window() 552 wndclass.hIcon = LoadIcon(NULL, IDI_APPLICATION); in rpng_win_create_window() 553 wndclass.hCursor = LoadCursor(NULL, IDC_ARROW); in rpng_win_create_window() 554 wndclass.hbrBackground = (HBRUSH)GetStockObject(DKGRAY_BRUSH); in rpng_win_create_window() 555 wndclass.lpszMenuName = NULL; in rpng_win_create_window() [all …]
|
D | rpng2-win.c | 701 WNDCLASSEX wndclass; 758 memset(&wndclass, 0, sizeof(wndclass)); 760 wndclass.cbSize = sizeof(wndclass); 761 wndclass.style = CS_HREDRAW | CS_VREDRAW; 762 wndclass.lpfnWndProc = rpng2_win_wndproc; 763 wndclass.hInstance = global_hInst; 764 wndclass.hIcon = LoadIcon(NULL, IDI_APPLICATION); 765 wndclass.hCursor = LoadCursor(NULL, IDC_ARROW); 766 wndclass.hbrBackground = (HBRUSH)GetStockObject(DKGRAY_BRUSH); 767 wndclass.lpszMenuName = NULL; [all …]
|
/external/python/cpython2/Lib/ctypes/test/ |
D | test_funcptr.py | 67 wndclass = WNDCLASS() 68 wndclass.lpfnWndProc = WNDPROC(wndproc) 80 self.assertEqual(wndclass.lpfnWndProc(1, 2, 3, 4), 10) 83 f = wndclass.lpfnWndProc 85 del wndclass
|
/external/python/cpython3/Lib/ctypes/test/ |
D | test_funcptr.py | 67 wndclass = WNDCLASS() 68 wndclass.lpfnWndProc = WNDPROC(wndproc) 80 self.assertEqual(wndclass.lpfnWndProc(1, 2, 3, 4), 10) 83 f = wndclass.lpfnWndProc 85 del wndclass
|
/external/libpng/contrib/visupng/ |
D | VisualPng.c | 85 WNDCLASS wndclass; in WinMain() local 88 wndclass.style = CS_HREDRAW | CS_VREDRAW; in WinMain() 89 wndclass.lpfnWndProc = WndProc; in WinMain() 90 wndclass.cbClsExtra = 0; in WinMain() 91 wndclass.cbWndExtra = 0; in WinMain() 92 wndclass.hInstance = hInstance; in WinMain() 93 wndclass.hIcon = LoadIcon (hInstance, szIconName) ; in WinMain() 94 wndclass.hCursor = LoadCursor (NULL, IDC_ARROW); in WinMain() 95 wndclass.hbrBackground = NULL; /* (HBRUSH) GetStockObject (GRAY_BRUSH); */ in WinMain() 96 wndclass.lpszMenuName = szProgName; in WinMain() [all …]
|