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

17 lines
493 B
Python

from __future__ import annotations
import typing
import mobase
__all__ = ["get_from_callback", "get_value", "get_variants", "set_from_callback"]
def get_from_callback(
arg0: typing.Callable[[mobase.GuessedString], None],
) -> str: ...
def get_value(arg0: str | mobase.GuessedString) -> str: ...
def get_variants(arg0: str | mobase.GuessedString) -> set[str]: ...
def set_from_callback(
arg0: mobase.GuessedString, arg1: typing.Callable[[mobase.GuessedString], None]
) -> None: ...