Bump pywin32 to 308.* (#12799)

This commit is contained in:
Avasam
2024-10-14 04:10:56 -04:00
committed by GitHub
parent cf9aa45d69
commit 4b5a7b09a4
7 changed files with 29 additions and 68 deletions

View File

@@ -0,0 +1,21 @@
from typing import Final
VS_FFI_SIGNATURE: Final = -17890115
VS_FFI_STRUCVERSION: Final = 0x00010000
VS_FFI_FILEFLAGSMASK: Final = 0x0000003F
VOS_NT_WINDOWS32: Final = 0x00040004
null_byte: Final = b"\0"
def file_flags(debug): ...
def file_type(is_dll): ...
def VS_FIXEDFILEINFO(maj, min, sub, build, debug: int = 0, is_dll: int = 1): ...
def nullterm(s): ...
def pad32(s, extra: int = 2): ...
def addlen(s): ...
def String(key, value): ...
def StringTable(key, data): ...
def StringFileInfo(data): ...
def Var(key, value): ...
def VarFileInfo(data): ...
def VS_VERSION_INFO(maj, min, sub, build, sdata, vdata, debug: int = 0, is_dll: int = 1): ...
def stamp(pathname, options) -> None: ...