mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-20 02:41:16 +08:00
[pywin32] win32gui.FindWindowEx parameters __ClassName and __WindowName are optional (#9859)
This commit is contained in:
committed by
GitHub
parent
a5fc97e6da
commit
2fe634f01c
@@ -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: ...
|
||||
|
||||
Reference in New Issue
Block a user