class ctypes.OleDLL(name, mode=DEFAULT_MODE, handle=None, use_errno=False, use_last_error=False)
Windows only: Instances of this class represent loaded shared libraries, functions in these libraries use the stdcall
calling convention, and are assumed to return the windows specific HRESULT
code. HRESULT
values contain information specifying whether the function call failed or succeeded, together with additional error code. If the return value signals a failure, an OSError
is automatically raised.
Changed in version 3.3: WindowsError
used to be raised.
Please login to continue.