Files
Mikaël Capelle 6623e19754 Expose INVALID_HANDLE_VALUE as mobase.INVALID_HANDLE_VALUE. (#131)
* Expose INVALID_HANDLE_VALUE as mobase.INVALID_HANDLE_VALUE.
* Add tests for startApplication() returning INVALID_HANDLE_VALUE.
* Clean tests and generate stub files for them.
2024-06-28 11:48:30 +02:00

20 lines
790 B
Python

from __future__ import annotations
import typing
__all__ = ["fn_0_arg", "fn_0_or_1_arg", "fn_1_arg", "fn_1_or_2_or_3_arg", "fn_2_arg"]
def fn_0_arg(arg0: typing.Callable[[], int]) -> int: ...
@typing.overload
def fn_0_or_1_arg(arg0: typing.Callable[[], int]) -> int: ...
@typing.overload
def fn_0_or_1_arg(arg0: typing.Callable[[int], int]) -> int: ...
def fn_1_arg(arg0: typing.Callable[[int], int], arg1: int) -> int: ...
@typing.overload
def fn_1_or_2_or_3_arg(arg0: typing.Callable[[int], int]) -> int: ...
@typing.overload
def fn_1_or_2_or_3_arg(arg0: typing.Callable[[int, int], int]) -> int: ...
@typing.overload
def fn_1_or_2_or_3_arg(arg0: typing.Callable[[int, int, int], int]) -> int: ...
def fn_2_arg(arg0: typing.Callable[[int, int], int], arg1: int, arg2: int) -> int: ...