pywin32: fill in the type of win32.win32pipe.GetNamedPipeInfo (#14846)

This commit is contained in:
lev-blit
2025-10-07 21:42:31 +03:00
committed by GitHub
parent fe11cc058c
commit 058aa6246b
+1 -1
View File
@@ -34,7 +34,7 @@ def CreateNamedPipe(
def DisconnectNamedPipe(hFile: int, /) -> None: ...
def GetOverlappedResult(hFile: int, overlapped: _win32typing.PyOVERLAPPED, bWait: int | bool, /) -> int: ...
def WaitNamedPipe(pipeName: str, timeout, /) -> None: ...
def GetNamedPipeInfo(hNamedPipe: int, /) -> tuple[Incomplete, Incomplete, Incomplete, Incomplete]: ...
def GetNamedPipeInfo(hNamedPipe: int, /) -> tuple[int, int, int, int]: ...
def PeekNamedPipe(hPipe: int, size: int, /) -> tuple[str, int, Incomplete]: ...
def GetNamedPipeClientProcessId(hPipe: int, /): ...
def GetNamedPipeServerProcessId(hPipe: int, /): ...