Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/ctypes/test/
Dtest_loading.py59 WinDLL("kernel32").GetModuleHandleW
64 WinDLL("coredll").GetModuleHandleW
70 dll = WinDLL(_ctypes_test.__file__)
Dtest_errno.py51 dll = WinDLL("kernel32", use_last_error=True)
64 dll = WinDLL("kernel32", use_last_error=False)
Dtest_cfuncs.py195 WinDLL
199 class stdcall_dll(WinDLL):
Dtest_functions.py21 windll = WinDLL(_ctypes_test.__file__)
/external/python/cpython2/Lib/ctypes/
D__init__.py394 class WinDLL(CDLL): class
454 windll = LibraryLoader(WinDLL)
/external/python/cpython2/Lib/
Dplatform.py570 Structure, WinDLL, _Pointer)
592 kernel32 = WinDLL('kernel32')
593 version = WinDLL('version')
/external/chromium-trace/catapult/third_party/pyserial/serial/
Dwin32.py6 _stdcall_libraries['kernel32'] = WinDLL('kernel32')
/external/python/cpython2/Doc/library/
Dctypes.rst53 <WinDLL 'kernel32', handle ... at ...>
1372 .. class:: WinDLL(name, mode=DEFAULT_MODE, handle=None, use_errno=False, use_last_error=False)
1379 :class:`WinDLL` and :class:`OleDLL` use the standard calling convention on this
1480 :class:`CDLL`, :class:`PyDLL`, :class:`WinDLL`, or :class:`OleDLL` types.
1504 Windows only: Creates :class:`WinDLL` instances.
/external/python/cpython2/Doc/whatsnew/
D2.6.rst2872 the :func:`DLL`, :func:`OleDLL`, and :func:`WinDLL` functions.