()
| 50 | from ctypes import CDLL as WinDLL, cdll as windll |
| 51 | |
| 52 | def GetLastError() -> int: |
| 53 | return 42 |
| 54 | |
| 55 | class WinError(OSError): # type: ignore[no-redef] |
| 56 | def __init__(self, err: int | None, descr: str | None = None) -> None: |
no outgoing calls
no test coverage detected