Searched refs:WINFUNCTYPE (Results 1 - 8 of 8) sorted by relevance
/third_party/python/Lib/ctypes/test/ |
H A D | test_funcptr.py | 5 WINFUNCTYPE 8 WINFUNCTYPE = CFUNCTYPE variable 15 X = WINFUNCTYPE(c_int, c_int, c_int) 27 StdCallback = WINFUNCTYPE(c_int, c_int, c_int) 42 if not WINFUNCTYPE is CFUNCTYPE: 46 WNDPROC = WINFUNCTYPE(c_long, c_int, c_int, c_int, c_int) 70 WNDPROC_2 = WINFUNCTYPE(c_long, c_int, c_int, c_int, c_int) 72 # This is no longer true, now that WINFUNCTYPE caches created types internally.
|
H A D | test_functions.py | 13 WINFUNCTYPE 16 WINFUNCTYPE = CFUNCTYPE variable 245 AnotherCallback = WINFUNCTYPE(c_int, c_int, c_int, c_int, c_int)
|
H A D | test_callbacks.py | 154 @need_symbol('WINFUNCTYPE') 157 functype = WINFUNCTYPE 201 @need_symbol('WINFUNCTYPE') 207 @WINFUNCTYPE(BOOL, HWND, LPARAM)
|
H A D | test_pointers.py | 196 mth = WINFUNCTYPE(None)(42, "name", (), None)
|
H A D | test_as_parameter.py | 9 CALLBACK_FUNCTYPE = WINFUNCTYPE
|
/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)
|
H A D | test_codecs.py | 38 from ctypes import POINTER, WINFUNCTYPE, WinDLL namespace 52 prototype = WINFUNCTYPE(BOOL, UINT, DWORD, POINTER(CPINFOEXW))
|
/third_party/python/Lib/ctypes/ |
H A D | __init__.py | 113 def WINFUNCTYPE(restype, *argtypes, **kw): function 134 if WINFUNCTYPE.__doc__: 135 WINFUNCTYPE.__doc__ = CFUNCTYPE.__doc__.replace("CFUNCTYPE", "WINFUNCTYPE")
|
Completed in 8 milliseconds