[pywin32] win32gui.FindWindowEx parameters __ClassName and __WindowName are optional (#9859)

This commit is contained in:
Benjamin Parzella
2023-03-09 13:56:20 +01:00
committed by GitHub
parent a5fc97e6da
commit 2fe634f01c

View File

@@ -135,7 +135,7 @@ def DestroyWindow(_hwnd: int) -> None: ...
def EnableWindow(hWnd: int, bEnable): ...
def FindWindow(__ClassName: _win32typing.PyResourceId | str | None, __WindowName: str | None) -> int: ...
def FindWindowEx(
__Parent: int | None, __ChildAfter: int | None, __ClassName: _win32typing.PyResourceId | str, __WindowName: str
__Parent: int | None, __ChildAfter: int | None, __ClassName: _win32typing.PyResourceId | str | None, __WindowName: str | None
) -> int: ...
def DragAcceptFiles(hwnd: int, fAccept) -> None: ...
def DragDetect(hwnd: int, point: tuple[Incomplete, Incomplete]) -> None: ...