Home
last modified time | relevance | path

Searched refs:WINFUNCTYPE (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython2/Lib/ctypes/test/
Dtest_funcptr.py5 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)
Dtest_functions.py13 WINFUNCTYPE
16 WINFUNCTYPE = CFUNCTYPE variable
263 AnotherCallback = WINFUNCTYPE(c_int, c_int, c_int, c_int, c_int)
Dtest_callbacks.py157 functype = WINFUNCTYPE
207 @WINFUNCTYPE(BOOL, HWND, LPARAM)
Dtest_pointers.py193 mth = WINFUNCTYPE(None)(42, "name", (), None)
Dtest_as_parameter.py9 CALLBACK_FUNCTYPE = WINFUNCTYPE
/external/python/cpython2/Lib/test/
Dwin_console_handler.py11 from ctypes import wintypes, WINFUNCTYPE
18 HandlerRoutine = WINFUNCTYPE(wintypes.BOOL, wintypes.DWORD)
/external/python/cpython2/Lib/ctypes/
D__init__.py116 def WINFUNCTYPE(restype, *argtypes, **kw): function
134 if WINFUNCTYPE.__doc__:
135 WINFUNCTYPE.__doc__ = CFUNCTYPE.__doc__.replace("CFUNCTYPE", "WINFUNCTYPE")
/external/vulkan-validation-layers/
Dvk-layer-introspect.py27 VKAPI_FUNCTYPE = ctypes.WINFUNCTYPE
/external/python/cpython2/Doc/library/
Dctypes.rst945 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))