Searched refs:wintypes (Results 1 - 9 of 9) sorted by relevance
/third_party/python/Lib/ctypes/test/ |
H A D | test_wintypes.py | 6 from ctypes import wintypes namespace 14 value = cast(true, POINTER(wintypes.VARIANT_BOOL)) 17 vb = wintypes.VARIANT_BOOL() 26 value = cast(false, POINTER(wintypes.VARIANT_BOOL)) 31 vb = wintypes.VARIANT_BOOL() 35 vb = wintypes.VARIANT_BOOL()
|
H A D | test_win32.py | 49 from ctypes import wintypes namespace 50 self.assertEqual(sizeof(wintypes.HWND), sizeof(c_void_p)) 53 from ctypes import wintypes namespace 54 self.assertEqual(sizeof(wintypes.WPARAM), 56 self.assertEqual(sizeof(wintypes.LPARAM),
|
H A D | test_callbacks.py | 203 from ctypes.wintypes import BOOL, HWND, LPARAM
|
/third_party/python/Lib/test/ |
H A D | win_console_handler.py | 11 from ctypes import wintypes, WINFUNCTYPE namespace 18 HandlerRoutine = WINFUNCTYPE(wintypes.BOOL, wintypes.DWORD) 34 SetConsoleCtrlHandler.argtypes = (HandlerRoutine, wintypes.BOOL) 35 SetConsoleCtrlHandler.restype = wintypes.BOOL
|
H A D | test_os.py | 2459 from ctypes import wintypes namespace 2467 PeekNamedPipe.restype = wintypes.BOOL 2468 PeekNamedPipe.argtypes = (wintypes.HANDLE, # Pipe handle 2470 wintypes.DWORD, # Buffer size 2471 ctypes.POINTER(wintypes.DWORD), # bytes read 2472 ctypes.POINTER(wintypes.DWORD), # bytes avail 2473 ctypes.POINTER(wintypes.DWORD)) # bytes left 2548 from ctypes import wintypes namespace 2555 wintypes.BOOL) 2556 SetConsoleCtrlHandler.restype = wintypes 2895 import ctypes.wintypes global() namespace [all...] |
H A D | test_codecs.py | 39 from ctypes.wintypes import BOOL, BYTE, WCHAR, UINT, DWORD
|
/third_party/python/Tools/unicode/ |
H A D | genwincodec.py | 7 from ctypes import wintypes namespace 13 MultiByteToWideChar.argtypes = [wintypes.UINT, wintypes.DWORD, 14 wintypes.LPCSTR, ctypes.c_int, 15 wintypes.LPWSTR, ctypes.c_int]
|
/third_party/python/PC/ |
H A D | validate_ucrtbase.py | 10 from ctypes.wintypes import DWORD, HANDLE
|
/third_party/python/Lib/test/support/ |
H A D | __init__.py | 227 import ctypes.wintypes namespace 231 _fields_ = [("fInherit", ctypes.wintypes.BOOL), 232 ("fReserved", ctypes.wintypes.BOOL), 233 ("dwFlags", ctypes.wintypes.DWORD)] 239 needed = ctypes.wintypes.DWORD()
|
Completed in 14 milliseconds