Searched refs:WINFUNCTYPE (Results 1 – 9 of 9) sorted by relevance
/external/python/cpython2/Lib/ctypes/test/ |
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 and os.name != "ce": 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)
|
D | test_functions.py | 13 WINFUNCTYPE 16 WINFUNCTYPE = CFUNCTYPE variable 263 AnotherCallback = WINFUNCTYPE(c_int, c_int, c_int, c_int, c_int)
|
D | test_callbacks.py | 157 functype = WINFUNCTYPE 207 @WINFUNCTYPE(BOOL, HWND, LPARAM)
|
D | test_pointers.py | 193 mth = WINFUNCTYPE(None)(42, "name", (), None)
|
D | test_as_parameter.py | 9 CALLBACK_FUNCTYPE = WINFUNCTYPE
|
/external/python/cpython2/Lib/test/ |
D | win_console_handler.py | 11 from ctypes import wintypes, WINFUNCTYPE 18 HandlerRoutine = WINFUNCTYPE(wintypes.BOOL, wintypes.DWORD)
|
/external/python/cpython2/Lib/ctypes/ |
D | __init__.py | 116 def WINFUNCTYPE(restype, *argtypes, **kw): function 134 if WINFUNCTYPE.__doc__: 135 WINFUNCTYPE.__doc__ = CFUNCTYPE.__doc__.replace("CFUNCTYPE", "WINFUNCTYPE")
|
/external/vulkan-validation-layers/ |
D | vk-layer-introspect.py | 27 VKAPI_FUNCTYPE = ctypes.WINFUNCTYPE
|
/external/python/cpython2/Doc/library/ |
D | ctypes.rst | 945 normal cdecl calling convention, and, on Windows, the WINFUNCTYPE factory 1643 .. function:: WINFUNCTYPE(restype, *argtypes, use_errno=False, use_last_error=False) 1647 :func:`WINFUNCTYPE` is the same as :func:`CFUNCTYPE`. The function will 1736 >>> from ctypes import c_int, WINFUNCTYPE, windll 1738 >>> prototype = WINFUNCTYPE(c_int, HWND, LPCSTR, LPCSTR, UINT) 1761 >>> from ctypes import POINTER, WINFUNCTYPE, windll, WinError 1763 >>> prototype = WINFUNCTYPE(BOOL, HWND, POINTER(RECT))
|