mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
29 lines
956 B
Python
29 lines
956 B
Python
import sys
|
|
from _typeshed import ReadableBuffer
|
|
from typing import Literal, overload
|
|
|
|
if sys.platform == "win32":
|
|
SND_APPLICATION: Literal[128]
|
|
SND_FILENAME: Literal[131072]
|
|
SND_ALIAS: Literal[65536]
|
|
SND_LOOP: Literal[8]
|
|
SND_MEMORY: Literal[4]
|
|
SND_PURGE: Literal[64]
|
|
SND_ASYNC: Literal[1]
|
|
SND_NODEFAULT: Literal[2]
|
|
SND_NOSTOP: Literal[16]
|
|
SND_NOWAIT: Literal[8192]
|
|
|
|
MB_ICONASTERISK: Literal[64]
|
|
MB_ICONEXCLAMATION: Literal[48]
|
|
MB_ICONHAND: Literal[16]
|
|
MB_ICONQUESTION: Literal[32]
|
|
MB_OK: Literal[0]
|
|
def Beep(frequency: int, duration: int) -> None: ...
|
|
# Can actually accept anything ORed with 4, and if not it's definitely str, but that's inexpressible
|
|
@overload
|
|
def PlaySound(sound: ReadableBuffer | None, flags: Literal[4]) -> None: ...
|
|
@overload
|
|
def PlaySound(sound: str | ReadableBuffer | None, flags: int) -> None: ...
|
|
def MessageBeep(type: int = 0) -> None: ...
|