Home
last modified time | relevance | path

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

/third_party/python/PC/
Dvalidate_ucrtbase.py9 Structure, WinDLL)
29 kernel32 = WinDLL('kernel32')
30 version = WinDLL('version')
37 ucrtbased = WinDLL(sys.argv[1])
/third_party/python/Lib/ctypes/test/
Dtest_errno.py47 dll = WinDLL("kernel32", use_last_error=True)
60 dll = WinDLL("kernel32", use_last_error=False)
Dtest_loading.py68 WinDLL("kernel32").GetModuleHandleW
76 dll = WinDLL(_ctypes_test.__file__)
Dtest_cfuncs.py195 WinDLL
199 class stdcall_dll(WinDLL):
Dtest_functions.py21 windll = WinDLL(_ctypes_test.__file__)
/third_party/python/Lib/ctypes/
D__init__.py406 class WinDLL(CDLL): class
468 windll = LibraryLoader(WinDLL)
/third_party/python/Lib/test/
Dpythoninfo.py703 ntdll = ctypes.WinDLL('ntdll')
Dtest_ntpath.py34 GSPN = ctypes.WinDLL("kernel32", use_last_error=True).GetShortPathNameW
Dtest_codecs.py34 from ctypes import POINTER, WINFUNCTYPE, WinDLL
49 GetCPInfoEx = prototype(("GetCPInfoExW", WinDLL("kernel32")))
Dtest_os.py2822 kernel = ctypes.WinDLL('Kernel32.dll', use_last_error=True)
/third_party/python/Doc/library/
Dctypes.rst57 <WinDLL 'kernel32', handle ... at ...>
1358 .. class:: WinDLL(name, mode=DEFAULT_MODE, handle=None, use_errno=False, use_last_error=False, winm…
1365 :class:`WinDLL` and :class:`OleDLL` use the standard calling convention on this
1476 :class:`CDLL`, :class:`PyDLL`, :class:`WinDLL`, or :class:`OleDLL` types.
1499 Windows only: Creates :class:`WinDLL` instances.
/third_party/python/Doc/whatsnew/
D2.6.rst2876 the :func:`DLL`, :func:`OleDLL`, and :func:`WinDLL` functions.