mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-02-05 17:37:41 +08:00
pywin32: Complete modules using stubgen & stubtest (#8866)
Complete modules using stubgen & stubtest
This commit is contained in:
@@ -1,50 +1,75 @@
|
||||
# Not available at runtime. Contains type definitions that are otherwise not exposed
|
||||
_win32typing
|
||||
win32comext.mapi.exchdapi
|
||||
win32.winxptheme
|
||||
win32.wincerapi
|
||||
|
||||
# incomplete
|
||||
pythoncom.*
|
||||
win32com(ext)?.mapi._exchdapi
|
||||
win32._wincerapi
|
||||
# PyWin tool / debugger
|
||||
pythonwin.pywin.*
|
||||
win32.lib.pywintypes.*
|
||||
win32.lib.ntsecuritycon.*
|
||||
win32.lib.sspicon.*
|
||||
win32.lib.win2kras.*
|
||||
win32.lib.win32con.*
|
||||
win32.lib.win32cryptcon.*
|
||||
win32.lib.win32inetcon.*
|
||||
win32.lib.win32netcon.*
|
||||
win32.lib.winioctlcon.*
|
||||
win32.win32pdh.*
|
||||
win32.win32ras.*
|
||||
win32.win32wnet.*
|
||||
win32comext.adsi.*
|
||||
win32comext.mapi.exchange.*
|
||||
win32comext.shell.shell.*
|
||||
win32comext.directsound.directsound.*
|
||||
|
||||
win32comext.axdebug.axdebug
|
||||
win32comext.internet.internet
|
||||
win32comext.adsi.adsicon
|
||||
win32comext.axdebug.adb
|
||||
win32comext.axdebug.codecontainer
|
||||
win32comext.axdebug.contexts
|
||||
win32comext.axdebug.debugger
|
||||
win32comext.axdebug.documents
|
||||
win32comext.axdebug.dump
|
||||
win32comext.axdebug.expressions
|
||||
win32comext.axdebug.gateways
|
||||
win32comext.axdebug.stackframe
|
||||
win32comext.axdebug.util
|
||||
win32comext.axscript.asputil
|
||||
win32comext.axscript.client.*
|
||||
win32comext.axscript.server.*
|
||||
win32comext.directsound.test.*
|
||||
win32comext.ifilter.ifiltercon
|
||||
win32comext.internet.inetcon
|
||||
win32comext.mapi.emsabtags
|
||||
win32comext.mapi.mapitags
|
||||
win32comext.mapi.mapiutil
|
||||
win32comext.propsys.pscon
|
||||
win32comext.shell.shellcon
|
||||
win32com.client.combrowse
|
||||
win32com.client.tlbrowse
|
||||
# Utilities to generate python bindings
|
||||
win32com.client.build
|
||||
win32com.client.CLSIDToClass
|
||||
win32com.client.connect
|
||||
# Necessary for mypy to not throw AssertionError
|
||||
win32com.client.dynamic.*
|
||||
win32com.client.gencache
|
||||
win32com.client.genpy
|
||||
win32com.client.makepy
|
||||
win32com.client.selecttlb
|
||||
win32com.client.util
|
||||
win32com.makegw.*
|
||||
# COM object servers scripts
|
||||
win32com.server.factory
|
||||
win32com.server.localserver
|
||||
win32com.server.register
|
||||
win32com.servers.*
|
||||
# Active X Scripts
|
||||
win32com(ext)?.axscript.client.framework
|
||||
win32com(ext)?.axscript.client.pyscript_rexec
|
||||
# Necessary for mypy to not fail
|
||||
win32com(ext)?.axscript.client.pyscript.*
|
||||
win32com(ext)?.axscript.client.scriptdispatch
|
||||
# Other scripts
|
||||
isapi.install
|
||||
win32.scripts.*
|
||||
win32.lib.netbios
|
||||
win32.lib.sspi
|
||||
win32.lib.win32pdhutil
|
||||
win32.lib.win32rcparser
|
||||
win32.lib.win32serviceutil
|
||||
win32.lib.win32traceutil
|
||||
win32.lib.verstamp
|
||||
# Demos, tests and debugging
|
||||
win32.lib.pywin32_testutil
|
||||
win32.lib.rasutil
|
||||
win32.lib.win32gui_struct
|
||||
win32com.demos.*
|
||||
win32com.servers.test_pycomtest
|
||||
win32com.test.*
|
||||
win32com(ext)?.axdebug.codecontainer
|
||||
win32com(ext)?.axdebug.dump
|
||||
win32com(ext)?.axdebug.debugger
|
||||
win32com(ext)?.axscript.client.pydumper
|
||||
win32com(ext)?.directsound.test.*
|
||||
# Deprecated and obsolete
|
||||
pythoncom.MakeIID
|
||||
pythoncom.MakeTime
|
||||
win32.lib.dbi
|
||||
win32.lib.win32pdhquery.Query.addperfcounter
|
||||
win32.win32gui.PyMakeBuffer
|
||||
# Also a script
|
||||
win32.lib.regcheck
|
||||
# failed to import, ImportError: DLL load failed while importing axdebug: The specified module could not be found.
|
||||
# https://github.com/python/mypy/issues/13822
|
||||
win32com.axdebug.axdebug
|
||||
win32com(ext)?.axdebug.adb
|
||||
win32com(ext)?.axdebug.codecontainer
|
||||
# failed to import, SystemError: CoInternetCreateSecurityManager() method: bad call flags
|
||||
win32com(ext)?.internet.internet
|
||||
# failed to import, ModuleNotFoundError: No module named '...'
|
||||
win32com(ext)?.axdebug.contexts
|
||||
win32com(ext)?.axdebug.debugger
|
||||
win32com(ext)?.axdebug.documents
|
||||
win32com(ext)?.axdebug.expressions
|
||||
win32com(ext)?.axdebug.stackframe
|
||||
win32com(ext)?.axscript.client.debug
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
version = "304.*"
|
||||
|
||||
[tool.stubtest]
|
||||
# The library only works on Windows; we currently only run stubtest on Ubuntu for third-party stubs in CI.
|
||||
# See #8660
|
||||
|
||||
@@ -2,10 +2,99 @@
|
||||
from _typeshed import Incomplete
|
||||
from typing_extensions import final
|
||||
|
||||
class PyDSCAPSType: ...
|
||||
class PyDSCBCAPSType: ...
|
||||
class PyDSCCAPSType: ...
|
||||
class PyNCB: ...
|
||||
class ArgNotFound: ...
|
||||
class PyOleEmpty: ...
|
||||
class PyOleMissing: ...
|
||||
class PyOleNothing: ...
|
||||
|
||||
class PyDSCAPSType:
|
||||
@property
|
||||
def dwFlags(self): ...
|
||||
@property
|
||||
def dwFreeHw3DAllBuffers(self): ...
|
||||
@property
|
||||
def dwFreeHw3DStaticBuffers(self): ...
|
||||
@property
|
||||
def dwFreeHw3DStreamingBuffers(self): ...
|
||||
@property
|
||||
def dwFreeHwMemBytes(self): ...
|
||||
@property
|
||||
def dwFreeHwMixingAllBuffers(self): ...
|
||||
@property
|
||||
def dwFreeHwMixingStaticBuffers(self): ...
|
||||
@property
|
||||
def dwFreeHwMixingStreamingBuffers(self): ...
|
||||
@property
|
||||
def dwMaxContigFreeHwMemBytes(self): ...
|
||||
@property
|
||||
def dwMaxHw3DAllBuffers(self): ...
|
||||
@property
|
||||
def dwMaxHw3DStaticBuffers(self): ...
|
||||
@property
|
||||
def dwMaxHw3DStreamingBuffers(self): ...
|
||||
@property
|
||||
def dwMaxHwMixingAllBuffers(self): ...
|
||||
@property
|
||||
def dwMaxHwMixingStaticBuffers(self): ...
|
||||
@property
|
||||
def dwMaxHwMixingStreamingBuffers(self): ...
|
||||
@property
|
||||
def dwMaxSecondarySampleRate(self): ...
|
||||
@property
|
||||
def dwMinSecondarySampleRate(self): ...
|
||||
@property
|
||||
def dwPlayCpuOverheadSwBuffers(self): ...
|
||||
@property
|
||||
def dwPrimaryBuffers(self): ...
|
||||
@property
|
||||
def dwTotalHwMemBytes(self): ...
|
||||
@property
|
||||
def dwUnlockTransferRateHwBuffers(self): ...
|
||||
|
||||
class PyDSCBCAPSType:
|
||||
@property
|
||||
def dwBufferBytes(self): ...
|
||||
@property
|
||||
def dwFlags(self): ...
|
||||
|
||||
class PyDSCCAPSType:
|
||||
@property
|
||||
def dwChannels(self): ...
|
||||
@property
|
||||
def dwFlags(self): ...
|
||||
@property
|
||||
def dwFormats(self): ...
|
||||
|
||||
@final
|
||||
class PyNCB:
|
||||
@property
|
||||
def Bufflen(self): ...
|
||||
@property
|
||||
def Callname(self): ...
|
||||
@property
|
||||
def Cmd_cplt(self): ...
|
||||
@property
|
||||
def Command(self): ...
|
||||
@property
|
||||
def Event(self): ...
|
||||
@property
|
||||
def Lana_num(self): ...
|
||||
@property
|
||||
def Lsn(self): ...
|
||||
@property
|
||||
def Name(self): ...
|
||||
@property
|
||||
def Num(self): ...
|
||||
@property
|
||||
def Post(self): ...
|
||||
def Reset(self, *args, **kwargs): ... # incomplete
|
||||
@property
|
||||
def Retcode(self): ...
|
||||
@property
|
||||
def Rto(self): ...
|
||||
@property
|
||||
def Sto(self): ...
|
||||
|
||||
class COMMTIMEOUTS: ...
|
||||
class CopyProgressRoutine: ...
|
||||
|
||||
@@ -1080,6 +1169,7 @@ class PyLUID_AND_ATTRIBUTES: ...
|
||||
class PyLsaLogon_HANDLE: ...
|
||||
class PyMSG: ...
|
||||
|
||||
@final
|
||||
class PyNETRESOURCE:
|
||||
@property
|
||||
def dwScope(self) -> int: ...
|
||||
@@ -1090,13 +1180,13 @@ class PyNETRESOURCE:
|
||||
@property
|
||||
def dwUsage(self) -> int: ...
|
||||
@property
|
||||
def localName(self) -> str: ...
|
||||
def lpComment(self): ...
|
||||
@property
|
||||
def remoteName(self) -> str: ...
|
||||
def lpLocalName(self): ...
|
||||
@property
|
||||
def comment(self) -> str: ...
|
||||
def lpProvider(self): ...
|
||||
@property
|
||||
def provider(self) -> str: ...
|
||||
def lpRemoteName(self): ...
|
||||
|
||||
class PyNET_VALIDATE_AUTHENTICATION_INPUT_ARG: ...
|
||||
class PyNET_VALIDATE_PASSWORD_CHANGE_INPUT_ARG: ...
|
||||
@@ -2617,11 +2707,11 @@ class PyDSBCAPS:
|
||||
@property
|
||||
def dwFlags(self) -> int: ...
|
||||
@property
|
||||
def nChannels(self) -> int: ...
|
||||
@property
|
||||
def dwUnlockTransferRate(self) -> int: ...
|
||||
@property
|
||||
def nAvgBytesPerSec(self) -> int: ...
|
||||
def dwBufferBytes(self): ...
|
||||
@property
|
||||
def dwPlayCpuOverhead(self): ...
|
||||
|
||||
class PyDSBUFFERDESC:
|
||||
@property
|
||||
|
||||
1
stubs/pywin32/afxres.pyi
Normal file
1
stubs/pywin32/afxres.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32.lib.afxres import *
|
||||
1
stubs/pywin32/commctrl.pyi
Normal file
1
stubs/pywin32/commctrl.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32.lib.commctrl import *
|
||||
1
stubs/pywin32/dde.pyi
Normal file
1
stubs/pywin32/dde.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from pythonwin.dde import *
|
||||
11
stubs/pywin32/isapi/__init__.pyi
Normal file
11
stubs/pywin32/isapi/__init__.pyi
Normal file
@@ -0,0 +1,11 @@
|
||||
from _typeshed import Incomplete
|
||||
|
||||
class ISAPIError(Exception):
|
||||
errno: Incomplete
|
||||
strerror: Incomplete
|
||||
funcname: Incomplete
|
||||
def __init__(self, errno, strerror: Incomplete | None = ..., funcname: Incomplete | None = ...) -> None: ...
|
||||
|
||||
class FilterError(ISAPIError): ...
|
||||
class ExtensionError(ISAPIError): ...
|
||||
class InternalReloadException(Exception): ...
|
||||
86
stubs/pywin32/isapi/isapicon.pyi
Normal file
86
stubs/pywin32/isapi/isapicon.pyi
Normal file
@@ -0,0 +1,86 @@
|
||||
from _typeshed import Incomplete
|
||||
|
||||
HTTP_CONTINUE: int
|
||||
HTTP_SWITCHING_PROTOCOLS: int
|
||||
HTTP_PROCESSING: int
|
||||
HTTP_OK: int
|
||||
HTTP_CREATED: int
|
||||
HTTP_ACCEPTED: int
|
||||
HTTP_NON_AUTHORITATIVE: int
|
||||
HTTP_NO_CONTENT: int
|
||||
HTTP_RESET_CONTENT: int
|
||||
HTTP_PARTIAL_CONTENT: int
|
||||
HTTP_MULTI_STATUS: int
|
||||
HTTP_MULTIPLE_CHOICES: int
|
||||
HTTP_MOVED_PERMANENTLY: int
|
||||
HTTP_MOVED_TEMPORARILY: int
|
||||
HTTP_SEE_OTHER: int
|
||||
HTTP_NOT_MODIFIED: int
|
||||
HTTP_USE_PROXY: int
|
||||
HTTP_TEMPORARY_REDIRECT: int
|
||||
HTTP_BAD_REQUEST: int
|
||||
HTTP_UNAUTHORIZED: int
|
||||
HTTP_PAYMENT_REQUIRED: int
|
||||
HTTP_FORBIDDEN: int
|
||||
HTTP_NOT_FOUND: int
|
||||
HTTP_METHOD_NOT_ALLOWED: int
|
||||
HTTP_NOT_ACCEPTABLE: int
|
||||
HTTP_PROXY_AUTHENTICATION_REQUIRED: int
|
||||
HTTP_REQUEST_TIME_OUT: int
|
||||
HTTP_CONFLICT: int
|
||||
HTTP_GONE: int
|
||||
HTTP_LENGTH_REQUIRED: int
|
||||
HTTP_PRECONDITION_FAILED: int
|
||||
HTTP_REQUEST_ENTITY_TOO_LARGE: int
|
||||
HTTP_REQUEST_URI_TOO_LARGE: int
|
||||
HTTP_UNSUPPORTED_MEDIA_TYPE: int
|
||||
HTTP_RANGE_NOT_SATISFIABLE: int
|
||||
HTTP_EXPECTATION_FAILED: int
|
||||
HTTP_UNPROCESSABLE_ENTITY: int
|
||||
HTTP_INTERNAL_SERVER_ERROR: int
|
||||
HTTP_NOT_IMPLEMENTED: int
|
||||
HTTP_BAD_GATEWAY: int
|
||||
HTTP_SERVICE_UNAVAILABLE: int
|
||||
HTTP_GATEWAY_TIME_OUT: int
|
||||
HTTP_VERSION_NOT_SUPPORTED: int
|
||||
HTTP_VARIANT_ALSO_VARIES: int
|
||||
HSE_STATUS_SUCCESS: int
|
||||
HSE_STATUS_SUCCESS_AND_KEEP_CONN: int
|
||||
HSE_STATUS_PENDING: int
|
||||
HSE_STATUS_ERROR: int
|
||||
SF_NOTIFY_SECURE_PORT: int
|
||||
SF_NOTIFY_NONSECURE_PORT: int
|
||||
SF_NOTIFY_READ_RAW_DATA: int
|
||||
SF_NOTIFY_PREPROC_HEADERS: int
|
||||
SF_NOTIFY_AUTHENTICATION: int
|
||||
SF_NOTIFY_URL_MAP: int
|
||||
SF_NOTIFY_ACCESS_DENIED: int
|
||||
SF_NOTIFY_SEND_RESPONSE: int
|
||||
SF_NOTIFY_SEND_RAW_DATA: int
|
||||
SF_NOTIFY_LOG: int
|
||||
SF_NOTIFY_END_OF_REQUEST: int
|
||||
SF_NOTIFY_END_OF_NET_SESSION: int
|
||||
SF_NOTIFY_ORDER_HIGH: int
|
||||
SF_NOTIFY_ORDER_MEDIUM: int
|
||||
SF_NOTIFY_ORDER_LOW: int
|
||||
SF_NOTIFY_ORDER_DEFAULT: int
|
||||
SF_NOTIFY_ORDER_MASK: Incomplete
|
||||
SF_STATUS_REQ_FINISHED: int
|
||||
SF_STATUS_REQ_FINISHED_KEEP_CONN: Incomplete
|
||||
SF_STATUS_REQ_NEXT_NOTIFICATION: Incomplete
|
||||
SF_STATUS_REQ_HANDLED_NOTIFICATION: Incomplete
|
||||
SF_STATUS_REQ_ERROR: Incomplete
|
||||
SF_STATUS_REQ_READ_NEXT: Incomplete
|
||||
HSE_IO_SYNC: int
|
||||
HSE_IO_ASYNC: int
|
||||
HSE_IO_DISCONNECT_AFTER_SEND: int
|
||||
HSE_IO_SEND_HEADERS: int
|
||||
HSE_IO_NODELAY: int
|
||||
HSE_IO_FINAL_SEND: int
|
||||
HSE_IO_CACHE_RESPONSE: int
|
||||
HSE_EXEC_URL_NO_HEADERS: int
|
||||
HSE_EXEC_URL_IGNORE_CURRENT_INTERCEPTOR: int
|
||||
HSE_EXEC_URL_IGNORE_VALIDATION_AND_RANGE: int
|
||||
HSE_EXEC_URL_DISABLE_CUSTOM_ERROR: int
|
||||
HSE_EXEC_URL_SSI_CMD: int
|
||||
HSE_EXEC_URL_HTTP_CACHE_ELIGIBLE: int
|
||||
12
stubs/pywin32/isapi/simple.pyi
Normal file
12
stubs/pywin32/isapi/simple.pyi
Normal file
@@ -0,0 +1,12 @@
|
||||
from _typeshed import Incomplete
|
||||
|
||||
class SimpleExtension:
|
||||
def GetExtensionVersion(self, vi) -> None: ...
|
||||
def HttpExtensionProc(self, control_block) -> None: ...
|
||||
def TerminateExtension(self, status) -> None: ...
|
||||
|
||||
class SimpleFilter:
|
||||
filter_flags: Incomplete
|
||||
def GetFilterVersion(self, fv) -> None: ...
|
||||
def HttpFilterProc(self, fc) -> None: ...
|
||||
def TerminateFilter(self, status) -> None: ...
|
||||
29
stubs/pywin32/isapi/threaded_extension.pyi
Normal file
29
stubs/pywin32/isapi/threaded_extension.pyi
Normal file
@@ -0,0 +1,29 @@
|
||||
import threading
|
||||
from _typeshed import Incomplete
|
||||
|
||||
import isapi.simple
|
||||
from isapi import ExtensionError as ExtensionError, isapicon as isapicon
|
||||
from win32event import INFINITE as INFINITE
|
||||
|
||||
ISAPI_REQUEST: int
|
||||
ISAPI_SHUTDOWN: int
|
||||
|
||||
class WorkerThread(threading.Thread):
|
||||
running: bool
|
||||
io_req_port: Incomplete
|
||||
extension: Incomplete
|
||||
def __init__(self, extension, io_req_port) -> None: ...
|
||||
def call_handler(self, cblock) -> None: ...
|
||||
|
||||
class ThreadPoolExtension(isapi.simple.SimpleExtension):
|
||||
max_workers: int
|
||||
worker_shutdown_wait: int
|
||||
workers: Incomplete
|
||||
dispatch_map: Incomplete
|
||||
io_req_port: Incomplete
|
||||
def GetExtensionVersion(self, vi) -> None: ...
|
||||
def HttpExtensionProc(self, control_block): ...
|
||||
def TerminateExtension(self, status) -> None: ...
|
||||
def DispatchConnection(self, errCode, bytes, key, overlapped) -> None: ...
|
||||
def Dispatch(self, ecb) -> None: ...
|
||||
def HandleDispatchError(self, ecb) -> None: ...
|
||||
1
stubs/pywin32/mmapfile.pyi
Normal file
1
stubs/pywin32/mmapfile.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32.mmapfile import *
|
||||
1
stubs/pywin32/mmsystem.pyi
Normal file
1
stubs/pywin32/mmsystem.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32.lib.mmsystem import *
|
||||
1
stubs/pywin32/ntsecuritycon.pyi
Normal file
1
stubs/pywin32/ntsecuritycon.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32.lib.ntsecuritycon import *
|
||||
1
stubs/pywin32/odbc.pyi
Normal file
1
stubs/pywin32/odbc.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32.odbc import *
|
||||
1
stubs/pywin32/perfmon.pyi
Normal file
1
stubs/pywin32/perfmon.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32.perfmon import *
|
||||
@@ -1,9 +1,14 @@
|
||||
# Can't generate with stubgen because:
|
||||
# "Critical error during semantic analysis: mypy: can't decode file '.venv\Lib\site-packages\pywin32_system32\pythoncom39.dll': 'utf-8' codec can't decode byte 0x90 in position 2: invalid start byte"
|
||||
# https://github.com/python/mypy/issues/13822
|
||||
from _typeshed import Incomplete
|
||||
from typing import Any
|
||||
from typing_extensions import TypeAlias
|
||||
|
||||
import _win32typing
|
||||
from win32.lib.pywintypes import com_error as com_error
|
||||
|
||||
error: TypeAlias = com_error # noqa: Y042
|
||||
|
||||
def __getattr__(name: str) -> Any: ... # incomplete
|
||||
def CoCreateFreeThreadedMarshaler(unk: _win32typing.PyIUnknown) -> _win32typing.PyIUnknown: ...
|
||||
def CoCreateInstanceEx(
|
||||
clsid: _win32typing.PyIID,
|
||||
@@ -128,3 +133,336 @@ def CoGetCancelObject(riid: _win32typing.PyIID, ThreadID: int = ...) -> _win32ty
|
||||
def CoSetCancelObject(Unk: _win32typing.PyIUnknown) -> None: ...
|
||||
def CoEnableCallCancellation() -> None: ...
|
||||
def CoDisableCallCancellation() -> None: ...
|
||||
|
||||
ACTIVEOBJECT_STRONG: int
|
||||
ACTIVEOBJECT_WEAK: int
|
||||
ArgNotFound: _win32typing.ArgNotFound
|
||||
CLSCTX_ALL: int
|
||||
CLSCTX_INPROC: int
|
||||
CLSCTX_INPROC_HANDLER: int
|
||||
CLSCTX_INPROC_SERVER: int
|
||||
CLSCTX_LOCAL_SERVER: int
|
||||
CLSCTX_REMOTE_SERVER: int
|
||||
CLSCTX_SERVER: int
|
||||
CLSID_DCOMAccessControl: _win32typing.PyIID
|
||||
CLSID_StdComponentCategoriesMgr: _win32typing.PyIID
|
||||
CLSID_StdGlobalInterfaceTable: _win32typing.PyIID
|
||||
COINIT_APARTMENTTHREADED: int
|
||||
COINIT_DISABLE_OLE1DDE: int
|
||||
COINIT_MULTITHREADED: int
|
||||
COINIT_SPEED_OVER_MEMORY: int
|
||||
COWAIT_ALERTABLE: int
|
||||
COWAIT_WAITALL: int
|
||||
|
||||
def CreateURLMonikerEx(*args, **kwargs): ... # incomplete
|
||||
|
||||
DATADIR_GET: int
|
||||
DATADIR_SET: int
|
||||
DESCKIND_FUNCDESC: int
|
||||
DESCKIND_VARDESC: int
|
||||
DISPATCH_METHOD: int
|
||||
DISPATCH_PROPERTYGET: int
|
||||
DISPATCH_PROPERTYPUT: int
|
||||
DISPATCH_PROPERTYPUTREF: int
|
||||
DISPID_COLLECT: int
|
||||
DISPID_CONSTRUCTOR: int
|
||||
DISPID_DESTRUCTOR: int
|
||||
DISPID_EVALUATE: int
|
||||
DISPID_NEWENUM: int
|
||||
DISPID_PROPERTYPUT: int
|
||||
DISPID_STARTENUM: int
|
||||
DISPID_THIS: int
|
||||
DISPID_UNKNOWN: int
|
||||
DISPID_VALUE: int
|
||||
DVASPECT_CONTENT: int
|
||||
DVASPECT_DOCPRINT: int
|
||||
DVASPECT_ICON: int
|
||||
DVASPECT_THUMBNAIL: int
|
||||
EOAC_ACCESS_CONTROL: int
|
||||
EOAC_ANY_AUTHORITY: int
|
||||
EOAC_APPID: int
|
||||
EOAC_AUTO_IMPERSONATE: int
|
||||
EOAC_DEFAULT: int
|
||||
EOAC_DISABLE_AAA: int
|
||||
EOAC_DYNAMIC: int
|
||||
EOAC_DYNAMIC_CLOAKING: int
|
||||
EOAC_MAKE_FULLSIC: int
|
||||
EOAC_MUTUAL_AUTH: int
|
||||
EOAC_NONE: int
|
||||
EOAC_NO_CUSTOM_MARSHAL: int
|
||||
EOAC_REQUIRE_FULLSIC: int
|
||||
EOAC_SECURE_REFS: int
|
||||
EOAC_STATIC_CLOAKING: int
|
||||
EXTCONN_CALLABLE: int
|
||||
EXTCONN_STRONG: int
|
||||
EXTCONN_WEAK: int
|
||||
Empty: _win32typing.PyOleEmpty
|
||||
FMTID_DocSummaryInformation: _win32typing.PyIID
|
||||
FMTID_SummaryInformation: _win32typing.PyIID
|
||||
FMTID_UserDefinedProperties: _win32typing.PyIID
|
||||
FUNCFLAG_FBINDABLE: int
|
||||
FUNCFLAG_FDEFAULTBIND: int
|
||||
FUNCFLAG_FDISPLAYBIND: int
|
||||
FUNCFLAG_FHIDDEN: int
|
||||
FUNCFLAG_FREQUESTEDIT: int
|
||||
FUNCFLAG_FRESTRICTED: int
|
||||
FUNCFLAG_FSOURCE: int
|
||||
FUNCFLAG_FUSESGETLASTERROR: int
|
||||
FUNC_DISPATCH: int
|
||||
FUNC_NONVIRTUAL: int
|
||||
FUNC_PUREVIRTUAL: int
|
||||
FUNC_STATIC: int
|
||||
FUNC_VIRTUAL: int
|
||||
IDLFLAG_FIN: int
|
||||
IDLFLAG_FLCID: int
|
||||
IDLFLAG_FOUT: int
|
||||
IDLFLAG_FRETVAL: int
|
||||
IDLFLAG_NONE: int
|
||||
IID_IBindCtx: _win32typing.PyIID
|
||||
IID_ICancelMethodCalls: _win32typing.PyIID
|
||||
IID_ICatInformation: _win32typing.PyIID
|
||||
IID_ICatRegister: _win32typing.PyIID
|
||||
IID_IClassFactory: _win32typing.PyIID
|
||||
IID_IClientSecurity: _win32typing.PyIID
|
||||
IID_IConnectionPoint: _win32typing.PyIID
|
||||
IID_IConnectionPointContainer: _win32typing.PyIID
|
||||
IID_IContext: _win32typing.PyIID
|
||||
IID_ICreateTypeInfo: _win32typing.PyIID
|
||||
IID_ICreateTypeLib: _win32typing.PyIID
|
||||
IID_ICreateTypeLib2: _win32typing.PyIID
|
||||
IID_IDataObject: _win32typing.PyIID
|
||||
IID_IDispatch: _win32typing.PyIID
|
||||
IID_IDispatchEx: _win32typing.PyIID
|
||||
IID_IDropSource: _win32typing.PyIID
|
||||
IID_IDropTarget: _win32typing.PyIID
|
||||
IID_IEnumCATEGORYINFO: _win32typing.PyIID
|
||||
IID_IEnumConnectionPoints: _win32typing.PyIID
|
||||
IID_IEnumConnections: _win32typing.PyIID
|
||||
IID_IEnumContextProps: _win32typing.PyIID
|
||||
IID_IEnumFORMATETC: _win32typing.PyIID
|
||||
IID_IEnumGUID: _win32typing.PyIID
|
||||
IID_IEnumMoniker: _win32typing.PyIID
|
||||
IID_IEnumSTATPROPSETSTG: _win32typing.PyIID
|
||||
IID_IEnumSTATPROPSTG: _win32typing.PyIID
|
||||
IID_IEnumSTATSTG: _win32typing.PyIID
|
||||
IID_IEnumString: _win32typing.PyIID
|
||||
IID_IEnumVARIANT: _win32typing.PyIID
|
||||
IID_IErrorLog: _win32typing.PyIID
|
||||
IID_IExternalConnection: _win32typing.PyIID
|
||||
IID_IGlobalInterfaceTable: _win32typing.PyIID
|
||||
IID_ILockBytes: _win32typing.PyIID
|
||||
IID_IMarshal: _win32typing.PyIID
|
||||
IID_IMoniker: _win32typing.PyIID
|
||||
IID_IOleWindow: _win32typing.PyIID
|
||||
IID_IPersist: _win32typing.PyIID
|
||||
IID_IPersistFile: _win32typing.PyIID
|
||||
IID_IPersistPropertyBag: _win32typing.PyIID
|
||||
IID_IPersistStorage: _win32typing.PyIID
|
||||
IID_IPersistStream: _win32typing.PyIID
|
||||
IID_IPersistStreamInit: _win32typing.PyIID
|
||||
IID_IPropertyBag: _win32typing.PyIID
|
||||
IID_IPropertySetStorage: _win32typing.PyIID
|
||||
IID_IPropertyStorage: _win32typing.PyIID
|
||||
IID_IProvideClassInfo: _win32typing.PyIID
|
||||
IID_IProvideClassInfo2: _win32typing.PyIID
|
||||
IID_IRunningObjectTable: _win32typing.PyIID
|
||||
IID_IServerSecurity: _win32typing.PyIID
|
||||
IID_IServiceProvider: _win32typing.PyIID
|
||||
IID_IStdMarshalInfo: _win32typing.PyIID
|
||||
IID_IStorage: _win32typing.PyIID
|
||||
IID_IStream: _win32typing.PyIID
|
||||
IID_ITypeComp: _win32typing.PyIID
|
||||
IID_ITypeInfo: _win32typing.PyIID
|
||||
IID_ITypeLib: _win32typing.PyIID
|
||||
IID_IUnknown: _win32typing.PyIID
|
||||
IID_NULL: _win32typing.PyIID
|
||||
IID_StdOle: _win32typing.PyIID
|
||||
IMPLTYPEFLAG_FDEFAULT: int
|
||||
IMPLTYPEFLAG_FRESTRICTED: int
|
||||
IMPLTYPEFLAG_FSOURCE: int
|
||||
INVOKE_FUNC: int
|
||||
INVOKE_PROPERTYGET: int
|
||||
INVOKE_PROPERTYPUT: int
|
||||
INVOKE_PROPERTYPUTREF: int
|
||||
InterfaceNames: dict[str, _win32typing.PyIID]
|
||||
MKSYS_ANTIMONIKER: int
|
||||
MKSYS_CLASSMONIKER: int
|
||||
MKSYS_FILEMONIKER: int
|
||||
MKSYS_GENERICCOMPOSITE: int
|
||||
MKSYS_ITEMMONIKER: int
|
||||
MKSYS_NONE: int
|
||||
MKSYS_POINTERMONIKER: int
|
||||
MSHCTX_DIFFERENTMACHINE: int
|
||||
MSHCTX_INPROC: int
|
||||
MSHCTX_LOCAL: int
|
||||
MSHCTX_NOSHAREDMEM: int
|
||||
MSHLFLAGS_NOPING: int
|
||||
MSHLFLAGS_NORMAL: int
|
||||
MSHLFLAGS_TABLESTRONG: int
|
||||
MSHLFLAGS_TABLEWEAK: int
|
||||
Missing: _win32typing.PyOleMissing
|
||||
Nothing: _win32typing.PyOleNothing
|
||||
PARAMFLAG_FHASDEFAULT: int
|
||||
PARAMFLAG_FIN: int
|
||||
PARAMFLAG_FLCID: int
|
||||
PARAMFLAG_FOPT: int
|
||||
PARAMFLAG_FOUT: int
|
||||
PARAMFLAG_FRETVAL: int
|
||||
PARAMFLAG_NONE: int
|
||||
REGCLS_MULTIPLEUSE: int
|
||||
REGCLS_MULTI_SEPARATE: int
|
||||
REGCLS_SINGLEUSE: int
|
||||
REGCLS_SUSPENDED: int
|
||||
ROTFLAGS_ALLOWANYCLIENT: int
|
||||
ROTFLAGS_REGISTRATIONKEEPSALIVE: int
|
||||
RPC_C_AUTHN_DCE_PRIVATE: int
|
||||
RPC_C_AUTHN_DCE_PUBLIC: int
|
||||
RPC_C_AUTHN_DEC_PUBLIC: int
|
||||
RPC_C_AUTHN_DEFAULT: int
|
||||
RPC_C_AUTHN_DPA: int
|
||||
RPC_C_AUTHN_GSS_KERBEROS: int
|
||||
RPC_C_AUTHN_GSS_NEGOTIATE: int
|
||||
RPC_C_AUTHN_GSS_SCHANNEL: int
|
||||
RPC_C_AUTHN_LEVEL_CALL: int
|
||||
RPC_C_AUTHN_LEVEL_CONNECT: int
|
||||
RPC_C_AUTHN_LEVEL_DEFAULT: int
|
||||
RPC_C_AUTHN_LEVEL_NONE: int
|
||||
RPC_C_AUTHN_LEVEL_PKT: int
|
||||
RPC_C_AUTHN_LEVEL_PKT_INTEGRITY: int
|
||||
RPC_C_AUTHN_LEVEL_PKT_PRIVACY: int
|
||||
RPC_C_AUTHN_MQ: int
|
||||
RPC_C_AUTHN_MSN: int
|
||||
RPC_C_AUTHN_NONE: int
|
||||
RPC_C_AUTHN_WINNT: int
|
||||
RPC_C_AUTHZ_DCE: int
|
||||
RPC_C_AUTHZ_DEFAULT: int
|
||||
RPC_C_AUTHZ_NAME: int
|
||||
RPC_C_AUTHZ_NONE: int
|
||||
RPC_C_IMP_LEVEL_ANONYMOUS: int
|
||||
RPC_C_IMP_LEVEL_DEFAULT: int
|
||||
RPC_C_IMP_LEVEL_DELEGATE: int
|
||||
RPC_C_IMP_LEVEL_IDENTIFY: int
|
||||
RPC_C_IMP_LEVEL_IMPERSONATE: int
|
||||
STDOLE2_LCID: int
|
||||
STDOLE2_MAJORVERNUM: int
|
||||
STDOLE2_MINORVERNUM: int
|
||||
STDOLE_LCID: int
|
||||
STDOLE_MAJORVERNUM: int
|
||||
STDOLE_MINORVERNUM: int
|
||||
STREAM_SEEK_CUR: int
|
||||
STREAM_SEEK_END: int
|
||||
STREAM_SEEK_SET: int
|
||||
SYS_MAC: int
|
||||
SYS_WIN16: int
|
||||
SYS_WIN32: int
|
||||
ServerInterfaces: dict[_win32typing.PyIID, bytes]
|
||||
TKIND_ALIAS: int
|
||||
TKIND_COCLASS: int
|
||||
TKIND_DISPATCH: int
|
||||
TKIND_ENUM: int
|
||||
TKIND_INTERFACE: int
|
||||
TKIND_MODULE: int
|
||||
TKIND_RECORD: int
|
||||
TKIND_UNION: int
|
||||
TYMED_ENHMF: int
|
||||
TYMED_FILE: int
|
||||
TYMED_GDI: int
|
||||
TYMED_HGLOBAL: int
|
||||
TYMED_ISTORAGE: int
|
||||
TYMED_ISTREAM: int
|
||||
TYMED_MFPICT: int
|
||||
TYMED_NULL: int
|
||||
TYPEFLAG_FAGGREGATABLE: int
|
||||
TYPEFLAG_FAPPOBJECT: int
|
||||
TYPEFLAG_FCANCREATE: int
|
||||
TYPEFLAG_FCONTROL: int
|
||||
TYPEFLAG_FDISPATCHABLE: int
|
||||
TYPEFLAG_FDUAL: int
|
||||
TYPEFLAG_FHIDDEN: int
|
||||
TYPEFLAG_FLICENSED: int
|
||||
TYPEFLAG_FNONEXTENSIBLE: int
|
||||
TYPEFLAG_FOLEAUTOMATION: int
|
||||
TYPEFLAG_FPREDECLID: int
|
||||
TYPEFLAG_FREPLACEABLE: int
|
||||
TYPEFLAG_FRESTRICTED: int
|
||||
TYPEFLAG_FREVERSEBIND: int
|
||||
TypeIIDs: dict[_win32typing.PyIID, type]
|
||||
URL_MK_LEGACY: int
|
||||
URL_MK_UNIFORM: int
|
||||
VARFLAG_FREADONLY: int
|
||||
VAR_CONST: int
|
||||
VAR_DISPATCH: int
|
||||
VAR_PERINSTANCE: int
|
||||
VAR_STATIC: int
|
||||
VT_ARRAY: int
|
||||
VT_BLOB: int
|
||||
VT_BLOB_OBJECT: int
|
||||
VT_BOOL: int
|
||||
VT_BSTR: int
|
||||
VT_BSTR_BLOB: int
|
||||
VT_BYREF: int
|
||||
VT_CARRAY: int
|
||||
VT_CF: int
|
||||
VT_CLSID: int
|
||||
VT_CY: int
|
||||
VT_DATE: int
|
||||
VT_DECIMAL: int
|
||||
VT_DISPATCH: int
|
||||
VT_EMPTY: int
|
||||
VT_ERROR: int
|
||||
VT_FILETIME: int
|
||||
VT_HRESULT: int
|
||||
VT_I1: int
|
||||
VT_I2: int
|
||||
VT_I4: int
|
||||
VT_I8: int
|
||||
VT_ILLEGAL: int
|
||||
VT_ILLEGALMASKED: int
|
||||
VT_INT: int
|
||||
VT_LPSTR: int
|
||||
VT_LPWSTR: int
|
||||
VT_NULL: int
|
||||
VT_PTR: int
|
||||
VT_R4: int
|
||||
VT_R8: int
|
||||
VT_RECORD: int
|
||||
VT_RESERVED: int
|
||||
VT_SAFEARRAY: int
|
||||
VT_STORAGE: int
|
||||
VT_STORED_OBJECT: int
|
||||
VT_STREAM: int
|
||||
VT_STREAMED_OBJECT: int
|
||||
VT_TYPEMASK: int
|
||||
VT_UI1: int
|
||||
VT_UI2: int
|
||||
VT_UI4: int
|
||||
VT_UI8: int
|
||||
VT_UINT: int
|
||||
VT_UNKNOWN: int
|
||||
VT_USERDEFINED: int
|
||||
VT_VARIANT: int
|
||||
VT_VECTOR: int
|
||||
VT_VOID: int
|
||||
|
||||
def connect(*args, **kwargs): ... # incomplete
|
||||
|
||||
dcom: int
|
||||
fdexNameCaseInsensitive: int
|
||||
fdexNameCaseSensitive: int
|
||||
fdexNameEnsure: int
|
||||
fdexNameImplicit: int
|
||||
fdexPropCanCall: int
|
||||
fdexPropCanConstruct: int
|
||||
fdexPropCanGet: int
|
||||
fdexPropCanPut: int
|
||||
fdexPropCanPutRef: int
|
||||
fdexPropCanSourceEvents: int
|
||||
fdexPropCannotCall: int
|
||||
fdexPropCannotConstruct: int
|
||||
fdexPropCannotGet: int
|
||||
fdexPropCannotPut: int
|
||||
fdexPropCannotPutRef: int
|
||||
fdexPropCannotSourceEvents: int
|
||||
fdexPropDynamicType: int
|
||||
fdexPropNoSideEffects: int
|
||||
frozen: int
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
# Can't generate with stubgen because:
|
||||
# "ImportError: This must be an MFC application - try 'import win32ui' first"
|
||||
APPCLASS_MONITOR: int
|
||||
APPCLASS_STANDARD: int
|
||||
APPCMD_CLIENTONLY: int
|
||||
|
||||
1
stubs/pywin32/pywintypes.pyi
Normal file
1
stubs/pywin32/pywintypes.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32.lib.pywintypes import *
|
||||
1
stubs/pywin32/regutil.pyi
Normal file
1
stubs/pywin32/regutil.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32.lib.regutil import *
|
||||
1
stubs/pywin32/servicemanager.pyi
Normal file
1
stubs/pywin32/servicemanager.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32.servicemanager import *
|
||||
1
stubs/pywin32/sspicon.pyi
Normal file
1
stubs/pywin32/sspicon.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32.lib.sspicon import *
|
||||
1
stubs/pywin32/timer.pyi
Normal file
1
stubs/pywin32/timer.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32.timer import *
|
||||
1
stubs/pywin32/win2kras.pyi
Normal file
1
stubs/pywin32/win2kras.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32.lib.win2kras import *
|
||||
499
stubs/pywin32/win32/lib/afxres.pyi
Normal file
499
stubs/pywin32/win32/lib/afxres.pyi
Normal file
@@ -0,0 +1,499 @@
|
||||
from _typeshed import Incomplete
|
||||
|
||||
TCS_MULTILINE: int
|
||||
CBRS_ALIGN_LEFT: int
|
||||
CBRS_ALIGN_TOP: int
|
||||
CBRS_ALIGN_RIGHT: int
|
||||
CBRS_ALIGN_BOTTOM: int
|
||||
CBRS_ALIGN_ANY: int
|
||||
CBRS_BORDER_LEFT: int
|
||||
CBRS_BORDER_TOP: int
|
||||
CBRS_BORDER_RIGHT: int
|
||||
CBRS_BORDER_BOTTOM: int
|
||||
CBRS_BORDER_ANY: int
|
||||
CBRS_TOOLTIPS: int
|
||||
CBRS_FLYBY: int
|
||||
CBRS_FLOAT_MULTI: int
|
||||
CBRS_BORDER_3D: int
|
||||
CBRS_HIDE_INPLACE: int
|
||||
CBRS_SIZE_DYNAMIC: int
|
||||
CBRS_SIZE_FIXED: int
|
||||
CBRS_FLOATING: int
|
||||
CBRS_GRIPPER: int
|
||||
CBRS_ORIENT_HORZ: Incomplete
|
||||
CBRS_ORIENT_VERT: Incomplete
|
||||
CBRS_ORIENT_ANY: Incomplete
|
||||
CBRS_ALL: int
|
||||
CBRS_NOALIGN: int
|
||||
CBRS_LEFT: Incomplete
|
||||
CBRS_TOP: Incomplete
|
||||
CBRS_RIGHT: Incomplete
|
||||
CBRS_BOTTOM: Incomplete
|
||||
SBPS_NORMAL: int
|
||||
SBPS_NOBORDERS: int
|
||||
SBPS_POPOUT: int
|
||||
SBPS_OWNERDRAW: int
|
||||
SBPS_DISABLED: int
|
||||
SBPS_STRETCH: int
|
||||
ID_INDICATOR_EXT: int
|
||||
ID_INDICATOR_CAPS: int
|
||||
ID_INDICATOR_NUM: int
|
||||
ID_INDICATOR_SCRL: int
|
||||
ID_INDICATOR_OVR: int
|
||||
ID_INDICATOR_REC: int
|
||||
ID_INDICATOR_KANA: int
|
||||
ID_SEPARATOR: int
|
||||
AFX_IDW_CONTROLBAR_FIRST: int
|
||||
AFX_IDW_CONTROLBAR_LAST: int
|
||||
AFX_IDW_TOOLBAR: int
|
||||
AFX_IDW_STATUS_BAR: int
|
||||
AFX_IDW_PREVIEW_BAR: int
|
||||
AFX_IDW_RESIZE_BAR: int
|
||||
AFX_IDW_DOCKBAR_TOP: int
|
||||
AFX_IDW_DOCKBAR_LEFT: int
|
||||
AFX_IDW_DOCKBAR_RIGHT: int
|
||||
AFX_IDW_DOCKBAR_BOTTOM: int
|
||||
AFX_IDW_DOCKBAR_FLOAT: int
|
||||
|
||||
def AFX_CONTROLBAR_MASK(nIDC): ...
|
||||
|
||||
AFX_IDW_PANE_FIRST: int
|
||||
AFX_IDW_PANE_LAST: int
|
||||
AFX_IDW_HSCROLL_FIRST: int
|
||||
AFX_IDW_VSCROLL_FIRST: int
|
||||
AFX_IDW_SIZE_BOX: int
|
||||
AFX_IDW_PANE_SAVE: int
|
||||
AFX_IDS_APP_TITLE: int
|
||||
AFX_IDS_IDLEMESSAGE: int
|
||||
AFX_IDS_HELPMODEMESSAGE: int
|
||||
AFX_IDS_APP_TITLE_EMBEDDING: int
|
||||
AFX_IDS_COMPANY_NAME: int
|
||||
AFX_IDS_OBJ_TITLE_INPLACE: int
|
||||
ID_FILE_NEW: int
|
||||
ID_FILE_OPEN: int
|
||||
ID_FILE_CLOSE: int
|
||||
ID_FILE_SAVE: int
|
||||
ID_FILE_SAVE_AS: int
|
||||
ID_FILE_PAGE_SETUP: int
|
||||
ID_FILE_PRINT_SETUP: int
|
||||
ID_FILE_PRINT: int
|
||||
ID_FILE_PRINT_DIRECT: int
|
||||
ID_FILE_PRINT_PREVIEW: int
|
||||
ID_FILE_UPDATE: int
|
||||
ID_FILE_SAVE_COPY_AS: int
|
||||
ID_FILE_SEND_MAIL: int
|
||||
ID_FILE_MRU_FIRST: int
|
||||
ID_FILE_MRU_FILE1: int
|
||||
ID_FILE_MRU_FILE2: int
|
||||
ID_FILE_MRU_FILE3: int
|
||||
ID_FILE_MRU_FILE4: int
|
||||
ID_FILE_MRU_FILE5: int
|
||||
ID_FILE_MRU_FILE6: int
|
||||
ID_FILE_MRU_FILE7: int
|
||||
ID_FILE_MRU_FILE8: int
|
||||
ID_FILE_MRU_FILE9: int
|
||||
ID_FILE_MRU_FILE10: int
|
||||
ID_FILE_MRU_FILE11: int
|
||||
ID_FILE_MRU_FILE12: int
|
||||
ID_FILE_MRU_FILE13: int
|
||||
ID_FILE_MRU_FILE14: int
|
||||
ID_FILE_MRU_FILE15: int
|
||||
ID_FILE_MRU_FILE16: int
|
||||
ID_FILE_MRU_LAST: int
|
||||
ID_EDIT_CLEAR: int
|
||||
ID_EDIT_CLEAR_ALL: int
|
||||
ID_EDIT_COPY: int
|
||||
ID_EDIT_CUT: int
|
||||
ID_EDIT_FIND: int
|
||||
ID_EDIT_PASTE: int
|
||||
ID_EDIT_PASTE_LINK: int
|
||||
ID_EDIT_PASTE_SPECIAL: int
|
||||
ID_EDIT_REPEAT: int
|
||||
ID_EDIT_REPLACE: int
|
||||
ID_EDIT_SELECT_ALL: int
|
||||
ID_EDIT_UNDO: int
|
||||
ID_EDIT_REDO: int
|
||||
ID_WINDOW_NEW: int
|
||||
ID_WINDOW_ARRANGE: int
|
||||
ID_WINDOW_CASCADE: int
|
||||
ID_WINDOW_TILE_HORZ: int
|
||||
ID_WINDOW_TILE_VERT: int
|
||||
ID_WINDOW_SPLIT: int
|
||||
AFX_IDM_WINDOW_FIRST: int
|
||||
AFX_IDM_WINDOW_LAST: int
|
||||
AFX_IDM_FIRST_MDICHILD: int
|
||||
ID_APP_ABOUT: int
|
||||
ID_APP_EXIT: int
|
||||
ID_HELP_INDEX: int
|
||||
ID_HELP_FINDER: int
|
||||
ID_HELP_USING: int
|
||||
ID_CONTEXT_HELP: int
|
||||
ID_HELP: int
|
||||
ID_DEFAULT_HELP: int
|
||||
ID_NEXT_PANE: int
|
||||
ID_PREV_PANE: int
|
||||
ID_FORMAT_FONT: int
|
||||
ID_OLE_INSERT_NEW: int
|
||||
ID_OLE_EDIT_LINKS: int
|
||||
ID_OLE_EDIT_CONVERT: int
|
||||
ID_OLE_EDIT_CHANGE_ICON: int
|
||||
ID_OLE_EDIT_PROPERTIES: int
|
||||
ID_OLE_VERB_FIRST: int
|
||||
ID_OLE_VERB_LAST: int
|
||||
AFX_ID_PREVIEW_CLOSE: int
|
||||
AFX_ID_PREVIEW_NUMPAGE: int
|
||||
AFX_ID_PREVIEW_NEXT: int
|
||||
AFX_ID_PREVIEW_PREV: int
|
||||
AFX_ID_PREVIEW_PRINT: int
|
||||
AFX_ID_PREVIEW_ZOOMIN: int
|
||||
AFX_ID_PREVIEW_ZOOMOUT: int
|
||||
ID_VIEW_TOOLBAR: int
|
||||
ID_VIEW_STATUS_BAR: int
|
||||
ID_RECORD_FIRST: int
|
||||
ID_RECORD_LAST: int
|
||||
ID_RECORD_NEXT: int
|
||||
ID_RECORD_PREV: int
|
||||
IDC_STATIC: int
|
||||
AFX_IDS_SCFIRST: int
|
||||
AFX_IDS_SCSIZE: int
|
||||
AFX_IDS_SCMOVE: int
|
||||
AFX_IDS_SCMINIMIZE: int
|
||||
AFX_IDS_SCMAXIMIZE: int
|
||||
AFX_IDS_SCNEXTWINDOW: int
|
||||
AFX_IDS_SCPREVWINDOW: int
|
||||
AFX_IDS_SCCLOSE: int
|
||||
AFX_IDS_SCRESTORE: int
|
||||
AFX_IDS_SCTASKLIST: int
|
||||
AFX_IDS_MDICHILD: int
|
||||
AFX_IDS_DESKACCESSORY: int
|
||||
AFX_IDS_OPENFILE: int
|
||||
AFX_IDS_SAVEFILE: int
|
||||
AFX_IDS_ALLFILTER: int
|
||||
AFX_IDS_UNTITLED: int
|
||||
AFX_IDS_SAVEFILECOPY: int
|
||||
AFX_IDS_PREVIEW_CLOSE: int
|
||||
AFX_IDS_UNNAMED_FILE: int
|
||||
AFX_IDS_ABOUT: int
|
||||
AFX_IDS_HIDE: int
|
||||
AFX_IDP_NO_ERROR_AVAILABLE: int
|
||||
AFX_IDS_NOT_SUPPORTED_EXCEPTION: int
|
||||
AFX_IDS_RESOURCE_EXCEPTION: int
|
||||
AFX_IDS_MEMORY_EXCEPTION: int
|
||||
AFX_IDS_USER_EXCEPTION: int
|
||||
AFX_IDS_PRINTONPORT: int
|
||||
AFX_IDS_ONEPAGE: int
|
||||
AFX_IDS_TWOPAGE: int
|
||||
AFX_IDS_PRINTPAGENUM: int
|
||||
AFX_IDS_PREVIEWPAGEDESC: int
|
||||
AFX_IDS_PRINTDEFAULTEXT: int
|
||||
AFX_IDS_PRINTDEFAULT: int
|
||||
AFX_IDS_PRINTFILTER: int
|
||||
AFX_IDS_PRINTCAPTION: int
|
||||
AFX_IDS_PRINTTOFILE: int
|
||||
AFX_IDS_OBJECT_MENUITEM: int
|
||||
AFX_IDS_EDIT_VERB: int
|
||||
AFX_IDS_ACTIVATE_VERB: int
|
||||
AFX_IDS_CHANGE_LINK: int
|
||||
AFX_IDS_AUTO: int
|
||||
AFX_IDS_MANUAL: int
|
||||
AFX_IDS_FROZEN: int
|
||||
AFX_IDS_ALL_FILES: int
|
||||
AFX_IDS_SAVE_MENU: int
|
||||
AFX_IDS_UPDATE_MENU: int
|
||||
AFX_IDS_SAVE_AS_MENU: int
|
||||
AFX_IDS_SAVE_COPY_AS_MENU: int
|
||||
AFX_IDS_EXIT_MENU: int
|
||||
AFX_IDS_UPDATING_ITEMS: int
|
||||
AFX_IDS_METAFILE_FORMAT: int
|
||||
AFX_IDS_DIB_FORMAT: int
|
||||
AFX_IDS_BITMAP_FORMAT: int
|
||||
AFX_IDS_LINKSOURCE_FORMAT: int
|
||||
AFX_IDS_EMBED_FORMAT: int
|
||||
AFX_IDS_PASTELINKEDTYPE: int
|
||||
AFX_IDS_UNKNOWNTYPE: int
|
||||
AFX_IDS_RTF_FORMAT: int
|
||||
AFX_IDS_TEXT_FORMAT: int
|
||||
AFX_IDS_INVALID_CURRENCY: int
|
||||
AFX_IDS_INVALID_DATETIME: int
|
||||
AFX_IDS_INVALID_DATETIMESPAN: int
|
||||
AFX_IDP_INVALID_FILENAME: int
|
||||
AFX_IDP_FAILED_TO_OPEN_DOC: int
|
||||
AFX_IDP_FAILED_TO_SAVE_DOC: int
|
||||
AFX_IDP_ASK_TO_SAVE: int
|
||||
AFX_IDP_FAILED_TO_CREATE_DOC: int
|
||||
AFX_IDP_FILE_TOO_LARGE: int
|
||||
AFX_IDP_FAILED_TO_START_PRINT: int
|
||||
AFX_IDP_FAILED_TO_LAUNCH_HELP: int
|
||||
AFX_IDP_INTERNAL_FAILURE: int
|
||||
AFX_IDP_COMMAND_FAILURE: int
|
||||
AFX_IDP_FAILED_MEMORY_ALLOC: int
|
||||
AFX_IDP_PARSE_INT: int
|
||||
AFX_IDP_PARSE_REAL: int
|
||||
AFX_IDP_PARSE_INT_RANGE: int
|
||||
AFX_IDP_PARSE_REAL_RANGE: int
|
||||
AFX_IDP_PARSE_STRING_SIZE: int
|
||||
AFX_IDP_PARSE_RADIO_BUTTON: int
|
||||
AFX_IDP_PARSE_BYTE: int
|
||||
AFX_IDP_PARSE_UINT: int
|
||||
AFX_IDP_PARSE_DATETIME: int
|
||||
AFX_IDP_PARSE_CURRENCY: int
|
||||
AFX_IDP_FAILED_INVALID_FORMAT: int
|
||||
AFX_IDP_FAILED_INVALID_PATH: int
|
||||
AFX_IDP_FAILED_DISK_FULL: int
|
||||
AFX_IDP_FAILED_ACCESS_READ: int
|
||||
AFX_IDP_FAILED_ACCESS_WRITE: int
|
||||
AFX_IDP_FAILED_IO_ERROR_READ: int
|
||||
AFX_IDP_FAILED_IO_ERROR_WRITE: int
|
||||
AFX_IDP_STATIC_OBJECT: int
|
||||
AFX_IDP_FAILED_TO_CONNECT: int
|
||||
AFX_IDP_SERVER_BUSY: int
|
||||
AFX_IDP_BAD_VERB: int
|
||||
AFX_IDP_FAILED_TO_NOTIFY: int
|
||||
AFX_IDP_FAILED_TO_LAUNCH: int
|
||||
AFX_IDP_ASK_TO_UPDATE: int
|
||||
AFX_IDP_FAILED_TO_UPDATE: int
|
||||
AFX_IDP_FAILED_TO_REGISTER: int
|
||||
AFX_IDP_FAILED_TO_AUTO_REGISTER: int
|
||||
AFX_IDP_FAILED_TO_CONVERT: int
|
||||
AFX_IDP_GET_NOT_SUPPORTED: int
|
||||
AFX_IDP_SET_NOT_SUPPORTED: int
|
||||
AFX_IDP_ASK_TO_DISCARD: int
|
||||
AFX_IDP_FAILED_TO_CREATE: int
|
||||
AFX_IDP_FAILED_MAPI_LOAD: int
|
||||
AFX_IDP_INVALID_MAPI_DLL: int
|
||||
AFX_IDP_FAILED_MAPI_SEND: int
|
||||
AFX_IDP_FILE_NONE: int
|
||||
AFX_IDP_FILE_GENERIC: int
|
||||
AFX_IDP_FILE_NOT_FOUND: int
|
||||
AFX_IDP_FILE_BAD_PATH: int
|
||||
AFX_IDP_FILE_TOO_MANY_OPEN: int
|
||||
AFX_IDP_FILE_ACCESS_DENIED: int
|
||||
AFX_IDP_FILE_INVALID_FILE: int
|
||||
AFX_IDP_FILE_REMOVE_CURRENT: int
|
||||
AFX_IDP_FILE_DIR_FULL: int
|
||||
AFX_IDP_FILE_BAD_SEEK: int
|
||||
AFX_IDP_FILE_HARD_IO: int
|
||||
AFX_IDP_FILE_SHARING: int
|
||||
AFX_IDP_FILE_LOCKING: int
|
||||
AFX_IDP_FILE_DISKFULL: int
|
||||
AFX_IDP_FILE_EOF: int
|
||||
AFX_IDP_ARCH_NONE: int
|
||||
AFX_IDP_ARCH_GENERIC: int
|
||||
AFX_IDP_ARCH_READONLY: int
|
||||
AFX_IDP_ARCH_ENDOFFILE: int
|
||||
AFX_IDP_ARCH_WRITEONLY: int
|
||||
AFX_IDP_ARCH_BADINDEX: int
|
||||
AFX_IDP_ARCH_BADCLASS: int
|
||||
AFX_IDP_ARCH_BADSCHEMA: int
|
||||
AFX_IDS_OCC_SCALEUNITS_PIXELS: int
|
||||
AFX_IDS_STATUS_FONT: int
|
||||
AFX_IDS_TOOLTIP_FONT: int
|
||||
AFX_IDS_UNICODE_FONT: int
|
||||
AFX_IDS_MINI_FONT: int
|
||||
AFX_IDP_SQL_FIRST: int
|
||||
AFX_IDP_SQL_CONNECT_FAIL: int
|
||||
AFX_IDP_SQL_RECORDSET_FORWARD_ONLY: int
|
||||
AFX_IDP_SQL_EMPTY_COLUMN_LIST: int
|
||||
AFX_IDP_SQL_FIELD_SCHEMA_MISMATCH: int
|
||||
AFX_IDP_SQL_ILLEGAL_MODE: int
|
||||
AFX_IDP_SQL_MULTIPLE_ROWS_AFFECTED: int
|
||||
AFX_IDP_SQL_NO_CURRENT_RECORD: int
|
||||
AFX_IDP_SQL_NO_ROWS_AFFECTED: int
|
||||
AFX_IDP_SQL_RECORDSET_READONLY: int
|
||||
AFX_IDP_SQL_SQL_NO_TOTAL: int
|
||||
AFX_IDP_SQL_ODBC_LOAD_FAILED: int
|
||||
AFX_IDP_SQL_DYNASET_NOT_SUPPORTED: int
|
||||
AFX_IDP_SQL_SNAPSHOT_NOT_SUPPORTED: int
|
||||
AFX_IDP_SQL_API_CONFORMANCE: int
|
||||
AFX_IDP_SQL_SQL_CONFORMANCE: int
|
||||
AFX_IDP_SQL_NO_DATA_FOUND: int
|
||||
AFX_IDP_SQL_ROW_UPDATE_NOT_SUPPORTED: int
|
||||
AFX_IDP_SQL_ODBC_V2_REQUIRED: int
|
||||
AFX_IDP_SQL_NO_POSITIONED_UPDATES: int
|
||||
AFX_IDP_SQL_LOCK_MODE_NOT_SUPPORTED: int
|
||||
AFX_IDP_SQL_DATA_TRUNCATED: int
|
||||
AFX_IDP_SQL_ROW_FETCH: int
|
||||
AFX_IDP_SQL_INCORRECT_ODBC: int
|
||||
AFX_IDP_SQL_UPDATE_DELETE_FAILED: int
|
||||
AFX_IDP_SQL_DYNAMIC_CURSOR_NOT_SUPPORTED: int
|
||||
AFX_IDP_DAO_FIRST: int
|
||||
AFX_IDP_DAO_ENGINE_INITIALIZATION: int
|
||||
AFX_IDP_DAO_DFX_BIND: int
|
||||
AFX_IDP_DAO_OBJECT_NOT_OPEN: int
|
||||
AFX_IDP_DAO_ROWTOOSHORT: int
|
||||
AFX_IDP_DAO_BADBINDINFO: int
|
||||
AFX_IDP_DAO_COLUMNUNAVAILABLE: int
|
||||
AFX_IDC_LISTBOX: int
|
||||
AFX_IDC_CHANGE: int
|
||||
AFX_IDC_PRINT_DOCNAME: int
|
||||
AFX_IDC_PRINT_PRINTERNAME: int
|
||||
AFX_IDC_PRINT_PORTNAME: int
|
||||
AFX_IDC_PRINT_PAGENUM: int
|
||||
ID_APPLY_NOW: int
|
||||
ID_WIZBACK: int
|
||||
ID_WIZNEXT: int
|
||||
ID_WIZFINISH: int
|
||||
AFX_IDC_TAB_CONTROL: int
|
||||
AFX_IDD_FILEOPEN: int
|
||||
AFX_IDD_FILESAVE: int
|
||||
AFX_IDD_FONT: int
|
||||
AFX_IDD_COLOR: int
|
||||
AFX_IDD_PRINT: int
|
||||
AFX_IDD_PRINTSETUP: int
|
||||
AFX_IDD_FIND: int
|
||||
AFX_IDD_REPLACE: int
|
||||
AFX_IDD_NEWTYPEDLG: int
|
||||
AFX_IDD_PRINTDLG: int
|
||||
AFX_IDD_PREVIEW_TOOLBAR: int
|
||||
AFX_IDD_PREVIEW_SHORTTOOLBAR: int
|
||||
AFX_IDD_INSERTOBJECT: int
|
||||
AFX_IDD_CHANGEICON: int
|
||||
AFX_IDD_CONVERT: int
|
||||
AFX_IDD_PASTESPECIAL: int
|
||||
AFX_IDD_EDITLINKS: int
|
||||
AFX_IDD_FILEBROWSE: int
|
||||
AFX_IDD_BUSY: int
|
||||
AFX_IDD_OBJECTPROPERTIES: int
|
||||
AFX_IDD_CHANGESOURCE: int
|
||||
AFX_IDC_CONTEXTHELP: int
|
||||
AFX_IDC_MAGNIFY: int
|
||||
AFX_IDC_SMALLARROWS: int
|
||||
AFX_IDC_HSPLITBAR: int
|
||||
AFX_IDC_VSPLITBAR: int
|
||||
AFX_IDC_NODROPCRSR: int
|
||||
AFX_IDC_TRACKNWSE: int
|
||||
AFX_IDC_TRACKNESW: int
|
||||
AFX_IDC_TRACKNS: int
|
||||
AFX_IDC_TRACKWE: int
|
||||
AFX_IDC_TRACK4WAY: int
|
||||
AFX_IDC_MOVE4WAY: int
|
||||
AFX_IDB_MINIFRAME_MENU: int
|
||||
AFX_IDB_CHECKLISTBOX_NT: int
|
||||
AFX_IDB_CHECKLISTBOX_95: int
|
||||
AFX_IDR_PREVIEW_ACCEL: int
|
||||
AFX_IDI_STD_MDIFRAME: int
|
||||
AFX_IDI_STD_FRAME: int
|
||||
AFX_IDC_FONTPROP: int
|
||||
AFX_IDC_FONTNAMES: int
|
||||
AFX_IDC_FONTSTYLES: int
|
||||
AFX_IDC_FONTSIZES: int
|
||||
AFX_IDC_STRIKEOUT: int
|
||||
AFX_IDC_UNDERLINE: int
|
||||
AFX_IDC_SAMPLEBOX: int
|
||||
AFX_IDC_COLOR_BLACK: int
|
||||
AFX_IDC_COLOR_WHITE: int
|
||||
AFX_IDC_COLOR_RED: int
|
||||
AFX_IDC_COLOR_GREEN: int
|
||||
AFX_IDC_COLOR_BLUE: int
|
||||
AFX_IDC_COLOR_YELLOW: int
|
||||
AFX_IDC_COLOR_MAGENTA: int
|
||||
AFX_IDC_COLOR_CYAN: int
|
||||
AFX_IDC_COLOR_GRAY: int
|
||||
AFX_IDC_COLOR_LIGHTGRAY: int
|
||||
AFX_IDC_COLOR_DARKRED: int
|
||||
AFX_IDC_COLOR_DARKGREEN: int
|
||||
AFX_IDC_COLOR_DARKBLUE: int
|
||||
AFX_IDC_COLOR_LIGHTBROWN: int
|
||||
AFX_IDC_COLOR_DARKMAGENTA: int
|
||||
AFX_IDC_COLOR_DARKCYAN: int
|
||||
AFX_IDC_COLORPROP: int
|
||||
AFX_IDC_SYSTEMCOLORS: int
|
||||
AFX_IDC_PROPNAME: int
|
||||
AFX_IDC_PICTURE: int
|
||||
AFX_IDC_BROWSE: int
|
||||
AFX_IDC_CLEAR: int
|
||||
AFX_IDD_PROPPAGE_COLOR: int
|
||||
AFX_IDD_PROPPAGE_FONT: int
|
||||
AFX_IDD_PROPPAGE_PICTURE: int
|
||||
AFX_IDB_TRUETYPE: int
|
||||
AFX_IDS_PROPPAGE_UNKNOWN: int
|
||||
AFX_IDS_COLOR_DESKTOP: int
|
||||
AFX_IDS_COLOR_APPWORKSPACE: int
|
||||
AFX_IDS_COLOR_WNDBACKGND: int
|
||||
AFX_IDS_COLOR_WNDTEXT: int
|
||||
AFX_IDS_COLOR_MENUBAR: int
|
||||
AFX_IDS_COLOR_MENUTEXT: int
|
||||
AFX_IDS_COLOR_ACTIVEBAR: int
|
||||
AFX_IDS_COLOR_INACTIVEBAR: int
|
||||
AFX_IDS_COLOR_ACTIVETEXT: int
|
||||
AFX_IDS_COLOR_INACTIVETEXT: int
|
||||
AFX_IDS_COLOR_ACTIVEBORDER: int
|
||||
AFX_IDS_COLOR_INACTIVEBORDER: int
|
||||
AFX_IDS_COLOR_WNDFRAME: int
|
||||
AFX_IDS_COLOR_SCROLLBARS: int
|
||||
AFX_IDS_COLOR_BTNFACE: int
|
||||
AFX_IDS_COLOR_BTNSHADOW: int
|
||||
AFX_IDS_COLOR_BTNTEXT: int
|
||||
AFX_IDS_COLOR_BTNHIGHLIGHT: int
|
||||
AFX_IDS_COLOR_DISABLEDTEXT: int
|
||||
AFX_IDS_COLOR_HIGHLIGHT: int
|
||||
AFX_IDS_COLOR_HIGHLIGHTTEXT: int
|
||||
AFX_IDS_REGULAR: int
|
||||
AFX_IDS_BOLD: int
|
||||
AFX_IDS_ITALIC: int
|
||||
AFX_IDS_BOLDITALIC: int
|
||||
AFX_IDS_SAMPLETEXT: int
|
||||
AFX_IDS_DISPLAYSTRING_FONT: int
|
||||
AFX_IDS_DISPLAYSTRING_COLOR: int
|
||||
AFX_IDS_DISPLAYSTRING_PICTURE: int
|
||||
AFX_IDS_PICTUREFILTER: int
|
||||
AFX_IDS_PICTYPE_UNKNOWN: int
|
||||
AFX_IDS_PICTYPE_NONE: int
|
||||
AFX_IDS_PICTYPE_BITMAP: int
|
||||
AFX_IDS_PICTYPE_METAFILE: int
|
||||
AFX_IDS_PICTYPE_ICON: int
|
||||
AFX_IDS_COLOR_PPG: int
|
||||
AFX_IDS_COLOR_PPG_CAPTION: int
|
||||
AFX_IDS_FONT_PPG: int
|
||||
AFX_IDS_FONT_PPG_CAPTION: int
|
||||
AFX_IDS_PICTURE_PPG: int
|
||||
AFX_IDS_PICTURE_PPG_CAPTION: int
|
||||
AFX_IDS_PICTUREBROWSETITLE: int
|
||||
AFX_IDS_BORDERSTYLE_0: int
|
||||
AFX_IDS_BORDERSTYLE_1: int
|
||||
AFX_IDS_VERB_EDIT: int
|
||||
AFX_IDS_VERB_PROPERTIES: int
|
||||
AFX_IDP_PICTURECANTOPEN: int
|
||||
AFX_IDP_PICTURECANTLOAD: int
|
||||
AFX_IDP_PICTURETOOLARGE: int
|
||||
AFX_IDP_PICTUREREADFAILED: int
|
||||
AFX_IDP_E_ILLEGALFUNCTIONCALL: int
|
||||
AFX_IDP_E_OVERFLOW: int
|
||||
AFX_IDP_E_OUTOFMEMORY: int
|
||||
AFX_IDP_E_DIVISIONBYZERO: int
|
||||
AFX_IDP_E_OUTOFSTRINGSPACE: int
|
||||
AFX_IDP_E_OUTOFSTACKSPACE: int
|
||||
AFX_IDP_E_BADFILENAMEORNUMBER: int
|
||||
AFX_IDP_E_FILENOTFOUND: int
|
||||
AFX_IDP_E_BADFILEMODE: int
|
||||
AFX_IDP_E_FILEALREADYOPEN: int
|
||||
AFX_IDP_E_DEVICEIOERROR: int
|
||||
AFX_IDP_E_FILEALREADYEXISTS: int
|
||||
AFX_IDP_E_BADRECORDLENGTH: int
|
||||
AFX_IDP_E_DISKFULL: int
|
||||
AFX_IDP_E_BADRECORDNUMBER: int
|
||||
AFX_IDP_E_BADFILENAME: int
|
||||
AFX_IDP_E_TOOMANYFILES: int
|
||||
AFX_IDP_E_DEVICEUNAVAILABLE: int
|
||||
AFX_IDP_E_PERMISSIONDENIED: int
|
||||
AFX_IDP_E_DISKNOTREADY: int
|
||||
AFX_IDP_E_PATHFILEACCESSERROR: int
|
||||
AFX_IDP_E_PATHNOTFOUND: int
|
||||
AFX_IDP_E_INVALIDPATTERNSTRING: int
|
||||
AFX_IDP_E_INVALIDUSEOFNULL: int
|
||||
AFX_IDP_E_INVALIDFILEFORMAT: int
|
||||
AFX_IDP_E_INVALIDPROPERTYVALUE: int
|
||||
AFX_IDP_E_INVALIDPROPERTYARRAYINDEX: int
|
||||
AFX_IDP_E_SETNOTSUPPORTEDATRUNTIME: int
|
||||
AFX_IDP_E_SETNOTSUPPORTED: int
|
||||
AFX_IDP_E_NEEDPROPERTYARRAYINDEX: int
|
||||
AFX_IDP_E_SETNOTPERMITTED: int
|
||||
AFX_IDP_E_GETNOTSUPPORTEDATRUNTIME: int
|
||||
AFX_IDP_E_GETNOTSUPPORTED: int
|
||||
AFX_IDP_E_PROPERTYNOTFOUND: int
|
||||
AFX_IDP_E_INVALIDCLIPBOARDFORMAT: int
|
||||
AFX_IDP_E_INVALIDPICTURE: int
|
||||
AFX_IDP_E_PRINTERERROR: int
|
||||
AFX_IDP_E_CANTSAVEFILETOTEMP: int
|
||||
AFX_IDP_E_SEARCHTEXTNOTFOUND: int
|
||||
AFX_IDP_E_REPLACEMENTSTOOLONG: int
|
||||
1522
stubs/pywin32/win32/lib/commctrl.pyi
Normal file
1522
stubs/pywin32/win32/lib/commctrl.pyi
Normal file
File diff suppressed because it is too large
Load Diff
858
stubs/pywin32/win32/lib/mmsystem.pyi
Normal file
858
stubs/pywin32/win32/lib/mmsystem.pyi
Normal file
@@ -0,0 +1,858 @@
|
||||
from _typeshed import Incomplete
|
||||
|
||||
MAXPNAMELEN: int
|
||||
MAXERRORLENGTH: int
|
||||
MAX_JOYSTICKOEMVXDNAME: int
|
||||
MM_MICROSOFT: int
|
||||
MM_MIDI_MAPPER: int
|
||||
MM_WAVE_MAPPER: int
|
||||
MM_SNDBLST_MIDIOUT: int
|
||||
MM_SNDBLST_MIDIIN: int
|
||||
MM_SNDBLST_SYNTH: int
|
||||
MM_SNDBLST_WAVEOUT: int
|
||||
MM_SNDBLST_WAVEIN: int
|
||||
MM_ADLIB: int
|
||||
MM_MPU401_MIDIOUT: int
|
||||
MM_MPU401_MIDIIN: int
|
||||
MM_PC_JOYSTICK: int
|
||||
TIME_MS: int
|
||||
TIME_SAMPLES: int
|
||||
TIME_BYTES: int
|
||||
TIME_SMPTE: int
|
||||
TIME_MIDI: int
|
||||
TIME_TICKS: int
|
||||
MM_JOY1MOVE: int
|
||||
MM_JOY2MOVE: int
|
||||
MM_JOY1ZMOVE: int
|
||||
MM_JOY2ZMOVE: int
|
||||
MM_JOY1BUTTONDOWN: int
|
||||
MM_JOY2BUTTONDOWN: int
|
||||
MM_JOY1BUTTONUP: int
|
||||
MM_JOY2BUTTONUP: int
|
||||
MM_MCINOTIFY: int
|
||||
MM_WOM_OPEN: int
|
||||
MM_WOM_CLOSE: int
|
||||
MM_WOM_DONE: int
|
||||
MM_WIM_OPEN: int
|
||||
MM_WIM_CLOSE: int
|
||||
MM_WIM_DATA: int
|
||||
MM_MIM_OPEN: int
|
||||
MM_MIM_CLOSE: int
|
||||
MM_MIM_DATA: int
|
||||
MM_MIM_LONGDATA: int
|
||||
MM_MIM_ERROR: int
|
||||
MM_MIM_LONGERROR: int
|
||||
MM_MOM_OPEN: int
|
||||
MM_MOM_CLOSE: int
|
||||
MM_MOM_DONE: int
|
||||
MM_STREAM_OPEN: int
|
||||
MM_STREAM_CLOSE: int
|
||||
MM_STREAM_DONE: int
|
||||
MM_STREAM_ERROR: int
|
||||
MM_MOM_POSITIONCB: int
|
||||
MM_MIM_MOREDATA: int
|
||||
MM_MIXM_LINE_CHANGE: int
|
||||
MM_MIXM_CONTROL_CHANGE: int
|
||||
MMSYSERR_BASE: int
|
||||
WAVERR_BASE: int
|
||||
MIDIERR_BASE: int
|
||||
TIMERR_BASE: int
|
||||
JOYERR_BASE: int
|
||||
MCIERR_BASE: int
|
||||
MIXERR_BASE: int
|
||||
MCI_STRING_OFFSET: int
|
||||
MCI_VD_OFFSET: int
|
||||
MCI_CD_OFFSET: int
|
||||
MCI_WAVE_OFFSET: int
|
||||
MCI_SEQ_OFFSET: int
|
||||
MMSYSERR_NOERROR: int
|
||||
MMSYSERR_ERROR: Incomplete
|
||||
MMSYSERR_BADDEVICEID: Incomplete
|
||||
MMSYSERR_NOTENABLED: Incomplete
|
||||
MMSYSERR_ALLOCATED: Incomplete
|
||||
MMSYSERR_INVALHANDLE: Incomplete
|
||||
MMSYSERR_NODRIVER: Incomplete
|
||||
MMSYSERR_NOMEM: Incomplete
|
||||
MMSYSERR_NOTSUPPORTED: Incomplete
|
||||
MMSYSERR_BADERRNUM: Incomplete
|
||||
MMSYSERR_INVALFLAG: Incomplete
|
||||
MMSYSERR_INVALPARAM: Incomplete
|
||||
MMSYSERR_HANDLEBUSY: Incomplete
|
||||
MMSYSERR_INVALIDALIAS: Incomplete
|
||||
MMSYSERR_BADDB: Incomplete
|
||||
MMSYSERR_KEYNOTFOUND: Incomplete
|
||||
MMSYSERR_READERROR: Incomplete
|
||||
MMSYSERR_WRITEERROR: Incomplete
|
||||
MMSYSERR_DELETEERROR: Incomplete
|
||||
MMSYSERR_VALNOTFOUND: Incomplete
|
||||
MMSYSERR_NODRIVERCB: Incomplete
|
||||
MMSYSERR_LASTERROR: Incomplete
|
||||
DRV_LOAD: int
|
||||
DRV_ENABLE: int
|
||||
DRV_OPEN: int
|
||||
DRV_CLOSE: int
|
||||
DRV_DISABLE: int
|
||||
DRV_FREE: int
|
||||
DRV_CONFIGURE: int
|
||||
DRV_QUERYCONFIGURE: int
|
||||
DRV_INSTALL: int
|
||||
DRV_REMOVE: int
|
||||
DRV_EXITSESSION: int
|
||||
DRV_POWER: int
|
||||
DRV_RESERVED: int
|
||||
DRV_USER: int
|
||||
DRVCNF_CANCEL: int
|
||||
DRVCNF_OK: int
|
||||
DRVCNF_RESTART: int
|
||||
DRV_CANCEL: int
|
||||
DRV_OK: int
|
||||
DRV_RESTART: int
|
||||
DRV_MCI_FIRST: int
|
||||
DRV_MCI_LAST: Incomplete
|
||||
CALLBACK_TYPEMASK: int
|
||||
CALLBACK_NULL: int
|
||||
CALLBACK_WINDOW: int
|
||||
CALLBACK_TASK: int
|
||||
CALLBACK_FUNCTION: int
|
||||
CALLBACK_THREAD: int
|
||||
CALLBACK_EVENT: int
|
||||
SND_SYNC: int
|
||||
SND_ASYNC: int
|
||||
SND_NODEFAULT: int
|
||||
SND_MEMORY: int
|
||||
SND_LOOP: int
|
||||
SND_NOSTOP: int
|
||||
SND_NOWAIT: int
|
||||
SND_ALIAS: int
|
||||
SND_ALIAS_ID: int
|
||||
SND_FILENAME: int
|
||||
SND_RESOURCE: int
|
||||
SND_PURGE: int
|
||||
SND_APPLICATION: int
|
||||
SND_ALIAS_START: int
|
||||
WAVERR_BADFORMAT: Incomplete
|
||||
WAVERR_STILLPLAYING: Incomplete
|
||||
WAVERR_UNPREPARED: Incomplete
|
||||
WAVERR_SYNC: Incomplete
|
||||
WAVERR_LASTERROR: Incomplete
|
||||
WOM_OPEN: int
|
||||
WOM_CLOSE: int
|
||||
WOM_DONE: int
|
||||
WIM_OPEN: int
|
||||
WIM_CLOSE: int
|
||||
WIM_DATA: int
|
||||
WAVE_MAPPER: int
|
||||
WAVE_FORMAT_QUERY: int
|
||||
WAVE_ALLOWSYNC: int
|
||||
WAVE_MAPPED: int
|
||||
WAVE_FORMAT_DIRECT: int
|
||||
WAVE_FORMAT_DIRECT_QUERY: Incomplete
|
||||
WHDR_DONE: int
|
||||
WHDR_PREPARED: int
|
||||
WHDR_BEGINLOOP: int
|
||||
WHDR_ENDLOOP: int
|
||||
WHDR_INQUEUE: int
|
||||
WAVECAPS_PITCH: int
|
||||
WAVECAPS_PLAYBACKRATE: int
|
||||
WAVECAPS_VOLUME: int
|
||||
WAVECAPS_LRVOLUME: int
|
||||
WAVECAPS_SYNC: int
|
||||
WAVECAPS_SAMPLEACCURATE: int
|
||||
WAVECAPS_DIRECTSOUND: int
|
||||
WAVE_INVALIDFORMAT: int
|
||||
WAVE_FORMAT_1M08: int
|
||||
WAVE_FORMAT_1S08: int
|
||||
WAVE_FORMAT_1M16: int
|
||||
WAVE_FORMAT_1S16: int
|
||||
WAVE_FORMAT_2M08: int
|
||||
WAVE_FORMAT_2S08: int
|
||||
WAVE_FORMAT_2M16: int
|
||||
WAVE_FORMAT_2S16: int
|
||||
WAVE_FORMAT_4M08: int
|
||||
WAVE_FORMAT_4S08: int
|
||||
WAVE_FORMAT_4M16: int
|
||||
WAVE_FORMAT_4S16: int
|
||||
WAVE_FORMAT_PCM: int
|
||||
WAVE_FORMAT_IEEE_FLOAT: int
|
||||
MIDIERR_UNPREPARED: Incomplete
|
||||
MIDIERR_STILLPLAYING: Incomplete
|
||||
MIDIERR_NOMAP: Incomplete
|
||||
MIDIERR_NOTREADY: Incomplete
|
||||
MIDIERR_NODEVICE: Incomplete
|
||||
MIDIERR_INVALIDSETUP: Incomplete
|
||||
MIDIERR_BADOPENMODE: Incomplete
|
||||
MIDIERR_DONT_CONTINUE: Incomplete
|
||||
MIDIERR_LASTERROR: Incomplete
|
||||
MIDIPATCHSIZE: int
|
||||
MIM_OPEN: int
|
||||
MIM_CLOSE: int
|
||||
MIM_DATA: int
|
||||
MIM_LONGDATA: int
|
||||
MIM_ERROR: int
|
||||
MIM_LONGERROR: int
|
||||
MOM_OPEN: int
|
||||
MOM_CLOSE: int
|
||||
MOM_DONE: int
|
||||
MIM_MOREDATA: int
|
||||
MOM_POSITIONCB: int
|
||||
MIDI_IO_STATUS: int
|
||||
MIDI_CACHE_ALL: int
|
||||
MIDI_CACHE_BESTFIT: int
|
||||
MIDI_CACHE_QUERY: int
|
||||
MIDI_UNCACHE: int
|
||||
MOD_MIDIPORT: int
|
||||
MOD_SYNTH: int
|
||||
MOD_SQSYNTH: int
|
||||
MOD_FMSYNTH: int
|
||||
MOD_MAPPER: int
|
||||
MIDICAPS_VOLUME: int
|
||||
MIDICAPS_LRVOLUME: int
|
||||
MIDICAPS_CACHE: int
|
||||
MIDICAPS_STREAM: int
|
||||
MHDR_DONE: int
|
||||
MHDR_PREPARED: int
|
||||
MHDR_INQUEUE: int
|
||||
MHDR_ISSTRM: int
|
||||
MEVT_F_SHORT: int
|
||||
MEVT_F_LONG: int
|
||||
MEVT_F_CALLBACK: int
|
||||
|
||||
def MEVT_EVENTTYPE(x): ...
|
||||
def MEVT_EVENTPARM(x): ...
|
||||
|
||||
MIDISTRM_ERROR: int
|
||||
MIDIPROP_SET: int
|
||||
MIDIPROP_GET: int
|
||||
MIDIPROP_TIMEDIV: int
|
||||
MIDIPROP_TEMPO: int
|
||||
AUXCAPS_CDAUDIO: int
|
||||
AUXCAPS_AUXIN: int
|
||||
AUXCAPS_VOLUME: int
|
||||
AUXCAPS_LRVOLUME: int
|
||||
MIXER_SHORT_NAME_CHARS: int
|
||||
MIXER_LONG_NAME_CHARS: int
|
||||
MIXERR_INVALLINE: Incomplete
|
||||
MIXERR_INVALCONTROL: Incomplete
|
||||
MIXERR_INVALVALUE: Incomplete
|
||||
MIXERR_LASTERROR: Incomplete
|
||||
MIXER_OBJECTF_HANDLE: int
|
||||
MIXER_OBJECTF_MIXER: int
|
||||
MIXER_OBJECTF_HMIXER: Incomplete
|
||||
MIXER_OBJECTF_WAVEOUT: int
|
||||
MIXER_OBJECTF_HWAVEOUT: Incomplete
|
||||
MIXER_OBJECTF_WAVEIN: int
|
||||
MIXER_OBJECTF_HWAVEIN: Incomplete
|
||||
MIXER_OBJECTF_MIDIOUT: int
|
||||
MIXER_OBJECTF_HMIDIOUT: Incomplete
|
||||
MIXER_OBJECTF_MIDIIN: int
|
||||
MIXER_OBJECTF_HMIDIIN: Incomplete
|
||||
MIXER_OBJECTF_AUX: int
|
||||
MIXERLINE_LINEF_ACTIVE: int
|
||||
MIXERLINE_LINEF_DISCONNECTED: int
|
||||
MIXERLINE_LINEF_SOURCE: int
|
||||
MIXERLINE_COMPONENTTYPE_DST_FIRST: int
|
||||
MIXERLINE_COMPONENTTYPE_DST_UNDEFINED: Incomplete
|
||||
MIXERLINE_COMPONENTTYPE_DST_DIGITAL: Incomplete
|
||||
MIXERLINE_COMPONENTTYPE_DST_LINE: Incomplete
|
||||
MIXERLINE_COMPONENTTYPE_DST_MONITOR: Incomplete
|
||||
MIXERLINE_COMPONENTTYPE_DST_SPEAKERS: Incomplete
|
||||
MIXERLINE_COMPONENTTYPE_DST_HEADPHONES: Incomplete
|
||||
MIXERLINE_COMPONENTTYPE_DST_TELEPHONE: Incomplete
|
||||
MIXERLINE_COMPONENTTYPE_DST_WAVEIN: Incomplete
|
||||
MIXERLINE_COMPONENTTYPE_DST_VOICEIN: Incomplete
|
||||
MIXERLINE_COMPONENTTYPE_DST_LAST: Incomplete
|
||||
MIXERLINE_COMPONENTTYPE_SRC_FIRST: int
|
||||
MIXERLINE_COMPONENTTYPE_SRC_UNDEFINED: Incomplete
|
||||
MIXERLINE_COMPONENTTYPE_SRC_DIGITAL: Incomplete
|
||||
MIXERLINE_COMPONENTTYPE_SRC_LINE: Incomplete
|
||||
MIXERLINE_COMPONENTTYPE_SRC_MICROPHONE: Incomplete
|
||||
MIXERLINE_COMPONENTTYPE_SRC_SYNTHESIZER: Incomplete
|
||||
MIXERLINE_COMPONENTTYPE_SRC_COMPACTDISC: Incomplete
|
||||
MIXERLINE_COMPONENTTYPE_SRC_TELEPHONE: Incomplete
|
||||
MIXERLINE_COMPONENTTYPE_SRC_PCSPEAKER: Incomplete
|
||||
MIXERLINE_COMPONENTTYPE_SRC_WAVEOUT: Incomplete
|
||||
MIXERLINE_COMPONENTTYPE_SRC_AUXILIARY: Incomplete
|
||||
MIXERLINE_COMPONENTTYPE_SRC_ANALOG: Incomplete
|
||||
MIXERLINE_COMPONENTTYPE_SRC_LAST: Incomplete
|
||||
MIXERLINE_TARGETTYPE_UNDEFINED: int
|
||||
MIXERLINE_TARGETTYPE_WAVEOUT: int
|
||||
MIXERLINE_TARGETTYPE_WAVEIN: int
|
||||
MIXERLINE_TARGETTYPE_MIDIOUT: int
|
||||
MIXERLINE_TARGETTYPE_MIDIIN: int
|
||||
MIXERLINE_TARGETTYPE_AUX: int
|
||||
MIXER_GETLINEINFOF_DESTINATION: int
|
||||
MIXER_GETLINEINFOF_SOURCE: int
|
||||
MIXER_GETLINEINFOF_LINEID: int
|
||||
MIXER_GETLINEINFOF_COMPONENTTYPE: int
|
||||
MIXER_GETLINEINFOF_TARGETTYPE: int
|
||||
MIXER_GETLINEINFOF_QUERYMASK: int
|
||||
MIXERCONTROL_CONTROLF_UNIFORM: int
|
||||
MIXERCONTROL_CONTROLF_MULTIPLE: int
|
||||
MIXERCONTROL_CONTROLF_DISABLED: int
|
||||
MIXERCONTROL_CT_CLASS_MASK: int
|
||||
MIXERCONTROL_CT_CLASS_CUSTOM: int
|
||||
MIXERCONTROL_CT_CLASS_METER: int
|
||||
MIXERCONTROL_CT_CLASS_SWITCH: int
|
||||
MIXERCONTROL_CT_CLASS_NUMBER: int
|
||||
MIXERCONTROL_CT_CLASS_SLIDER: int
|
||||
MIXERCONTROL_CT_CLASS_FADER: int
|
||||
MIXERCONTROL_CT_CLASS_TIME: int
|
||||
MIXERCONTROL_CT_CLASS_LIST: int
|
||||
MIXERCONTROL_CT_SUBCLASS_MASK: int
|
||||
MIXERCONTROL_CT_SC_SWITCH_BOOLEAN: int
|
||||
MIXERCONTROL_CT_SC_SWITCH_BUTTON: int
|
||||
MIXERCONTROL_CT_SC_METER_POLLED: int
|
||||
MIXERCONTROL_CT_SC_TIME_MICROSECS: int
|
||||
MIXERCONTROL_CT_SC_TIME_MILLISECS: int
|
||||
MIXERCONTROL_CT_SC_LIST_SINGLE: int
|
||||
MIXERCONTROL_CT_SC_LIST_MULTIPLE: int
|
||||
MIXERCONTROL_CT_UNITS_MASK: int
|
||||
MIXERCONTROL_CT_UNITS_CUSTOM: int
|
||||
MIXERCONTROL_CT_UNITS_BOOLEAN: int
|
||||
MIXERCONTROL_CT_UNITS_SIGNED: int
|
||||
MIXERCONTROL_CT_UNITS_UNSIGNED: int
|
||||
MIXERCONTROL_CT_UNITS_DECIBELS: int
|
||||
MIXERCONTROL_CT_UNITS_PERCENT: int
|
||||
MIXERCONTROL_CONTROLTYPE_CUSTOM: Incomplete
|
||||
MIXERCONTROL_CONTROLTYPE_BOOLEANMETER: Incomplete
|
||||
MIXERCONTROL_CONTROLTYPE_SIGNEDMETER: Incomplete
|
||||
MIXERCONTROL_CONTROLTYPE_PEAKMETER: Incomplete
|
||||
MIXERCONTROL_CONTROLTYPE_UNSIGNEDMETER: Incomplete
|
||||
MIXERCONTROL_CONTROLTYPE_BOOLEAN: Incomplete
|
||||
MIXERCONTROL_CONTROLTYPE_ONOFF: Incomplete
|
||||
MIXERCONTROL_CONTROLTYPE_MUTE: Incomplete
|
||||
MIXERCONTROL_CONTROLTYPE_MONO: Incomplete
|
||||
MIXERCONTROL_CONTROLTYPE_LOUDNESS: Incomplete
|
||||
MIXERCONTROL_CONTROLTYPE_STEREOENH: Incomplete
|
||||
MIXERCONTROL_CONTROLTYPE_BUTTON: Incomplete
|
||||
MIXERCONTROL_CONTROLTYPE_DECIBELS: Incomplete
|
||||
MIXERCONTROL_CONTROLTYPE_SIGNED: Incomplete
|
||||
MIXERCONTROL_CONTROLTYPE_UNSIGNED: Incomplete
|
||||
MIXERCONTROL_CONTROLTYPE_PERCENT: Incomplete
|
||||
MIXERCONTROL_CONTROLTYPE_SLIDER: Incomplete
|
||||
MIXERCONTROL_CONTROLTYPE_PAN: Incomplete
|
||||
MIXERCONTROL_CONTROLTYPE_QSOUNDPAN: Incomplete
|
||||
MIXERCONTROL_CONTROLTYPE_FADER: Incomplete
|
||||
MIXERCONTROL_CONTROLTYPE_VOLUME: Incomplete
|
||||
MIXERCONTROL_CONTROLTYPE_BASS: Incomplete
|
||||
MIXERCONTROL_CONTROLTYPE_TREBLE: Incomplete
|
||||
MIXERCONTROL_CONTROLTYPE_EQUALIZER: Incomplete
|
||||
MIXERCONTROL_CONTROLTYPE_SINGLESELECT: Incomplete
|
||||
MIXERCONTROL_CONTROLTYPE_MUX: Incomplete
|
||||
MIXERCONTROL_CONTROLTYPE_MULTIPLESELECT: Incomplete
|
||||
MIXERCONTROL_CONTROLTYPE_MIXER: Incomplete
|
||||
MIXERCONTROL_CONTROLTYPE_MICROTIME: Incomplete
|
||||
MIXERCONTROL_CONTROLTYPE_MILLITIME: Incomplete
|
||||
MIXER_GETLINECONTROLSF_ALL: int
|
||||
MIXER_GETLINECONTROLSF_ONEBYID: int
|
||||
MIXER_GETLINECONTROLSF_ONEBYTYPE: int
|
||||
MIXER_GETLINECONTROLSF_QUERYMASK: int
|
||||
MIXER_GETCONTROLDETAILSF_VALUE: int
|
||||
MIXER_GETCONTROLDETAILSF_LISTTEXT: int
|
||||
MIXER_GETCONTROLDETAILSF_QUERYMASK: int
|
||||
MIXER_SETCONTROLDETAILSF_VALUE: int
|
||||
MIXER_SETCONTROLDETAILSF_CUSTOM: int
|
||||
MIXER_SETCONTROLDETAILSF_QUERYMASK: int
|
||||
TIMERR_NOERROR: int
|
||||
TIMERR_NOCANDO: Incomplete
|
||||
TIMERR_STRUCT: Incomplete
|
||||
TIME_ONESHOT: int
|
||||
TIME_PERIODIC: int
|
||||
TIME_CALLBACK_FUNCTION: int
|
||||
TIME_CALLBACK_EVENT_SET: int
|
||||
TIME_CALLBACK_EVENT_PULSE: int
|
||||
JOYERR_NOERROR: int
|
||||
JOYERR_PARMS: Incomplete
|
||||
JOYERR_NOCANDO: Incomplete
|
||||
JOYERR_UNPLUGGED: Incomplete
|
||||
JOY_BUTTON1: int
|
||||
JOY_BUTTON2: int
|
||||
JOY_BUTTON3: int
|
||||
JOY_BUTTON4: int
|
||||
JOY_BUTTON1CHG: int
|
||||
JOY_BUTTON2CHG: int
|
||||
JOY_BUTTON3CHG: int
|
||||
JOY_BUTTON4CHG: int
|
||||
JOY_BUTTON5: int
|
||||
JOY_BUTTON6: int
|
||||
JOY_BUTTON7: int
|
||||
JOY_BUTTON8: int
|
||||
JOY_BUTTON9: int
|
||||
JOY_BUTTON10: int
|
||||
JOY_BUTTON11: int
|
||||
JOY_BUTTON12: int
|
||||
JOY_BUTTON13: int
|
||||
JOY_BUTTON14: int
|
||||
JOY_BUTTON15: int
|
||||
JOY_BUTTON16: int
|
||||
JOY_BUTTON17: int
|
||||
JOY_BUTTON18: int
|
||||
JOY_BUTTON19: int
|
||||
JOY_BUTTON20: int
|
||||
JOY_BUTTON21: int
|
||||
JOY_BUTTON22: int
|
||||
JOY_BUTTON23: int
|
||||
JOY_BUTTON24: int
|
||||
JOY_BUTTON25: int
|
||||
JOY_BUTTON26: int
|
||||
JOY_BUTTON27: int
|
||||
JOY_BUTTON28: int
|
||||
JOY_BUTTON29: int
|
||||
JOY_BUTTON30: int
|
||||
JOY_BUTTON31: int
|
||||
JOY_BUTTON32: int
|
||||
JOY_POVFORWARD: int
|
||||
JOY_POVRIGHT: int
|
||||
JOY_POVBACKWARD: int
|
||||
JOY_POVLEFT: int
|
||||
JOY_RETURNX: int
|
||||
JOY_RETURNY: int
|
||||
JOY_RETURNZ: int
|
||||
JOY_RETURNR: int
|
||||
JOY_RETURNU: int
|
||||
JOY_RETURNV: int
|
||||
JOY_RETURNPOV: int
|
||||
JOY_RETURNBUTTONS: int
|
||||
JOY_RETURNRAWDATA: int
|
||||
JOY_RETURNPOVCTS: int
|
||||
JOY_RETURNCENTERED: int
|
||||
JOY_USEDEADZONE: int
|
||||
JOY_RETURNALL: Incomplete
|
||||
JOY_CAL_READALWAYS: int
|
||||
JOY_CAL_READXYONLY: int
|
||||
JOY_CAL_READ3: int
|
||||
JOY_CAL_READ4: int
|
||||
JOY_CAL_READXONLY: int
|
||||
JOY_CAL_READYONLY: int
|
||||
JOY_CAL_READ5: int
|
||||
JOY_CAL_READ6: int
|
||||
JOY_CAL_READZONLY: int
|
||||
JOY_CAL_READRONLY: int
|
||||
JOY_CAL_READUONLY: int
|
||||
JOY_CAL_READVONLY: int
|
||||
JOYSTICKID1: int
|
||||
JOYSTICKID2: int
|
||||
JOYCAPS_HASZ: int
|
||||
JOYCAPS_HASR: int
|
||||
JOYCAPS_HASU: int
|
||||
JOYCAPS_HASV: int
|
||||
JOYCAPS_HASPOV: int
|
||||
JOYCAPS_POV4DIR: int
|
||||
JOYCAPS_POVCTS: int
|
||||
MMIOERR_BASE: int
|
||||
MMIOERR_FILENOTFOUND: Incomplete
|
||||
MMIOERR_OUTOFMEMORY: Incomplete
|
||||
MMIOERR_CANNOTOPEN: Incomplete
|
||||
MMIOERR_CANNOTCLOSE: Incomplete
|
||||
MMIOERR_CANNOTREAD: Incomplete
|
||||
MMIOERR_CANNOTWRITE: Incomplete
|
||||
MMIOERR_CANNOTSEEK: Incomplete
|
||||
MMIOERR_CANNOTEXPAND: Incomplete
|
||||
MMIOERR_CHUNKNOTFOUND: Incomplete
|
||||
MMIOERR_UNBUFFERED: Incomplete
|
||||
MMIOERR_PATHNOTFOUND: Incomplete
|
||||
MMIOERR_ACCESSDENIED: Incomplete
|
||||
MMIOERR_SHARINGVIOLATION: Incomplete
|
||||
MMIOERR_NETWORKERROR: Incomplete
|
||||
MMIOERR_TOOMANYOPENFILES: Incomplete
|
||||
MMIOERR_INVALIDFILE: Incomplete
|
||||
CFSEPCHAR: Incomplete
|
||||
MMIO_RWMODE: int
|
||||
MMIO_SHAREMODE: int
|
||||
MMIO_CREATE: int
|
||||
MMIO_PARSE: int
|
||||
MMIO_DELETE: int
|
||||
MMIO_EXIST: int
|
||||
MMIO_ALLOCBUF: int
|
||||
MMIO_GETTEMP: int
|
||||
MMIO_DIRTY: int
|
||||
MMIO_READ: int
|
||||
MMIO_WRITE: int
|
||||
MMIO_READWRITE: int
|
||||
MMIO_COMPAT: int
|
||||
MMIO_EXCLUSIVE: int
|
||||
MMIO_DENYWRITE: int
|
||||
MMIO_DENYREAD: int
|
||||
MMIO_DENYNONE: int
|
||||
MMIO_FHOPEN: int
|
||||
MMIO_EMPTYBUF: int
|
||||
MMIO_TOUPPER: int
|
||||
MMIO_INSTALLPROC: int
|
||||
MMIO_GLOBALPROC: int
|
||||
MMIO_REMOVEPROC: int
|
||||
MMIO_UNICODEPROC: int
|
||||
MMIO_FINDPROC: int
|
||||
MMIO_FINDCHUNK: int
|
||||
MMIO_FINDRIFF: int
|
||||
MMIO_FINDLIST: int
|
||||
MMIO_CREATERIFF: int
|
||||
MMIO_CREATELIST: int
|
||||
MMIOM_READ: int
|
||||
MMIOM_WRITE: int
|
||||
MMIOM_SEEK: int
|
||||
MMIOM_OPEN: int
|
||||
MMIOM_CLOSE: int
|
||||
MMIOM_WRITEFLUSH: int
|
||||
MMIOM_RENAME: int
|
||||
MMIOM_USER: int
|
||||
SEEK_SET: int
|
||||
SEEK_CUR: int
|
||||
SEEK_END: int
|
||||
MMIO_DEFAULTBUFFER: int
|
||||
MCIERR_INVALID_DEVICE_ID: Incomplete
|
||||
MCIERR_UNRECOGNIZED_KEYWORD: Incomplete
|
||||
MCIERR_UNRECOGNIZED_COMMAND: Incomplete
|
||||
MCIERR_HARDWARE: Incomplete
|
||||
MCIERR_INVALID_DEVICE_NAME: Incomplete
|
||||
MCIERR_OUT_OF_MEMORY: Incomplete
|
||||
MCIERR_DEVICE_OPEN: Incomplete
|
||||
MCIERR_CANNOT_LOAD_DRIVER: Incomplete
|
||||
MCIERR_MISSING_COMMAND_STRING: Incomplete
|
||||
MCIERR_PARAM_OVERFLOW: Incomplete
|
||||
MCIERR_MISSING_STRING_ARGUMENT: Incomplete
|
||||
MCIERR_BAD_INTEGER: Incomplete
|
||||
MCIERR_PARSER_INTERNAL: Incomplete
|
||||
MCIERR_DRIVER_INTERNAL: Incomplete
|
||||
MCIERR_MISSING_PARAMETER: Incomplete
|
||||
MCIERR_UNSUPPORTED_FUNCTION: Incomplete
|
||||
MCIERR_FILE_NOT_FOUND: Incomplete
|
||||
MCIERR_DEVICE_NOT_READY: Incomplete
|
||||
MCIERR_INTERNAL: Incomplete
|
||||
MCIERR_DRIVER: Incomplete
|
||||
MCIERR_CANNOT_USE_ALL: Incomplete
|
||||
MCIERR_MULTIPLE: Incomplete
|
||||
MCIERR_EXTENSION_NOT_FOUND: Incomplete
|
||||
MCIERR_OUTOFRANGE: Incomplete
|
||||
MCIERR_FLAGS_NOT_COMPATIBLE: Incomplete
|
||||
MCIERR_FILE_NOT_SAVED: Incomplete
|
||||
MCIERR_DEVICE_TYPE_REQUIRED: Incomplete
|
||||
MCIERR_DEVICE_LOCKED: Incomplete
|
||||
MCIERR_DUPLICATE_ALIAS: Incomplete
|
||||
MCIERR_BAD_CONSTANT: Incomplete
|
||||
MCIERR_MUST_USE_SHAREABLE: Incomplete
|
||||
MCIERR_MISSING_DEVICE_NAME: Incomplete
|
||||
MCIERR_BAD_TIME_FORMAT: Incomplete
|
||||
MCIERR_NO_CLOSING_QUOTE: Incomplete
|
||||
MCIERR_DUPLICATE_FLAGS: Incomplete
|
||||
MCIERR_INVALID_FILE: Incomplete
|
||||
MCIERR_NULL_PARAMETER_BLOCK: Incomplete
|
||||
MCIERR_UNNAMED_RESOURCE: Incomplete
|
||||
MCIERR_NEW_REQUIRES_ALIAS: Incomplete
|
||||
MCIERR_NOTIFY_ON_AUTO_OPEN: Incomplete
|
||||
MCIERR_NO_ELEMENT_ALLOWED: Incomplete
|
||||
MCIERR_NONAPPLICABLE_FUNCTION: Incomplete
|
||||
MCIERR_ILLEGAL_FOR_AUTO_OPEN: Incomplete
|
||||
MCIERR_FILENAME_REQUIRED: Incomplete
|
||||
MCIERR_EXTRA_CHARACTERS: Incomplete
|
||||
MCIERR_DEVICE_NOT_INSTALLED: Incomplete
|
||||
MCIERR_GET_CD: Incomplete
|
||||
MCIERR_SET_CD: Incomplete
|
||||
MCIERR_SET_DRIVE: Incomplete
|
||||
MCIERR_DEVICE_LENGTH: Incomplete
|
||||
MCIERR_DEVICE_ORD_LENGTH: Incomplete
|
||||
MCIERR_NO_INTEGER: Incomplete
|
||||
MCIERR_WAVE_OUTPUTSINUSE: Incomplete
|
||||
MCIERR_WAVE_SETOUTPUTINUSE: Incomplete
|
||||
MCIERR_WAVE_INPUTSINUSE: Incomplete
|
||||
MCIERR_WAVE_SETINPUTINUSE: Incomplete
|
||||
MCIERR_WAVE_OUTPUTUNSPECIFIED: Incomplete
|
||||
MCIERR_WAVE_INPUTUNSPECIFIED: Incomplete
|
||||
MCIERR_WAVE_OUTPUTSUNSUITABLE: Incomplete
|
||||
MCIERR_WAVE_SETOUTPUTUNSUITABLE: Incomplete
|
||||
MCIERR_WAVE_INPUTSUNSUITABLE: Incomplete
|
||||
MCIERR_WAVE_SETINPUTUNSUITABLE: Incomplete
|
||||
MCIERR_SEQ_DIV_INCOMPATIBLE: Incomplete
|
||||
MCIERR_SEQ_PORT_INUSE: Incomplete
|
||||
MCIERR_SEQ_PORT_NONEXISTENT: Incomplete
|
||||
MCIERR_SEQ_PORT_MAPNODEVICE: Incomplete
|
||||
MCIERR_SEQ_PORT_MISCERROR: Incomplete
|
||||
MCIERR_SEQ_TIMER: Incomplete
|
||||
MCIERR_SEQ_PORTUNSPECIFIED: Incomplete
|
||||
MCIERR_SEQ_NOMIDIPRESENT: Incomplete
|
||||
MCIERR_NO_WINDOW: Incomplete
|
||||
MCIERR_CREATEWINDOW: Incomplete
|
||||
MCIERR_FILE_READ: Incomplete
|
||||
MCIERR_FILE_WRITE: Incomplete
|
||||
MCIERR_NO_IDENTITY: Incomplete
|
||||
MCIERR_CUSTOM_DRIVER_BASE: Incomplete
|
||||
MCI_FIRST: int
|
||||
MCI_OPEN: int
|
||||
MCI_CLOSE: int
|
||||
MCI_ESCAPE: int
|
||||
MCI_PLAY: int
|
||||
MCI_SEEK: int
|
||||
MCI_STOP: int
|
||||
MCI_PAUSE: int
|
||||
MCI_INFO: int
|
||||
MCI_GETDEVCAPS: int
|
||||
MCI_SPIN: int
|
||||
MCI_SET: int
|
||||
MCI_STEP: int
|
||||
MCI_RECORD: int
|
||||
MCI_SYSINFO: int
|
||||
MCI_BREAK: int
|
||||
MCI_SAVE: int
|
||||
MCI_STATUS: int
|
||||
MCI_CUE: int
|
||||
MCI_REALIZE: int
|
||||
MCI_WINDOW: int
|
||||
MCI_PUT: int
|
||||
MCI_WHERE: int
|
||||
MCI_FREEZE: int
|
||||
MCI_UNFREEZE: int
|
||||
MCI_LOAD: int
|
||||
MCI_CUT: int
|
||||
MCI_COPY: int
|
||||
MCI_PASTE: int
|
||||
MCI_UPDATE: int
|
||||
MCI_RESUME: int
|
||||
MCI_DELETE: int
|
||||
MCI_USER_MESSAGES: Incomplete
|
||||
MCI_LAST: int
|
||||
MCI_DEVTYPE_VCR: int
|
||||
MCI_DEVTYPE_VIDEODISC: int
|
||||
MCI_DEVTYPE_OVERLAY: int
|
||||
MCI_DEVTYPE_CD_AUDIO: int
|
||||
MCI_DEVTYPE_DAT: int
|
||||
MCI_DEVTYPE_SCANNER: int
|
||||
MCI_DEVTYPE_ANIMATION: int
|
||||
MCI_DEVTYPE_DIGITAL_VIDEO: int
|
||||
MCI_DEVTYPE_OTHER: int
|
||||
MCI_DEVTYPE_WAVEFORM_AUDIO: int
|
||||
MCI_DEVTYPE_SEQUENCER: int
|
||||
MCI_DEVTYPE_FIRST: int
|
||||
MCI_DEVTYPE_LAST: int
|
||||
MCI_DEVTYPE_FIRST_USER: int
|
||||
MCI_MODE_NOT_READY: Incomplete
|
||||
MCI_MODE_STOP: Incomplete
|
||||
MCI_MODE_PLAY: Incomplete
|
||||
MCI_MODE_RECORD: Incomplete
|
||||
MCI_MODE_SEEK: Incomplete
|
||||
MCI_MODE_PAUSE: Incomplete
|
||||
MCI_MODE_OPEN: Incomplete
|
||||
MCI_FORMAT_MILLISECONDS: int
|
||||
MCI_FORMAT_HMS: int
|
||||
MCI_FORMAT_MSF: int
|
||||
MCI_FORMAT_FRAMES: int
|
||||
MCI_FORMAT_SMPTE_24: int
|
||||
MCI_FORMAT_SMPTE_25: int
|
||||
MCI_FORMAT_SMPTE_30: int
|
||||
MCI_FORMAT_SMPTE_30DROP: int
|
||||
MCI_FORMAT_BYTES: int
|
||||
MCI_FORMAT_SAMPLES: int
|
||||
MCI_FORMAT_TMSF: int
|
||||
|
||||
def MCI_MSF_MINUTE(msf): ...
|
||||
def MCI_MSF_SECOND(msf): ...
|
||||
def MCI_MSF_FRAME(msf): ...
|
||||
def MCI_TMSF_TRACK(tmsf): ...
|
||||
def MCI_TMSF_MINUTE(tmsf): ...
|
||||
def MCI_TMSF_SECOND(tmsf): ...
|
||||
def MCI_TMSF_FRAME(tmsf): ...
|
||||
def MCI_HMS_HOUR(hms): ...
|
||||
def MCI_HMS_MINUTE(hms): ...
|
||||
def MCI_HMS_SECOND(hms): ...
|
||||
|
||||
MCI_NOTIFY_SUCCESSFUL: int
|
||||
MCI_NOTIFY_SUPERSEDED: int
|
||||
MCI_NOTIFY_ABORTED: int
|
||||
MCI_NOTIFY_FAILURE: int
|
||||
MCI_NOTIFY: int
|
||||
MCI_WAIT: int
|
||||
MCI_FROM: int
|
||||
MCI_TO: int
|
||||
MCI_TRACK: int
|
||||
MCI_OPEN_SHAREABLE: int
|
||||
MCI_OPEN_ELEMENT: int
|
||||
MCI_OPEN_ALIAS: int
|
||||
MCI_OPEN_ELEMENT_ID: int
|
||||
MCI_OPEN_TYPE_ID: int
|
||||
MCI_OPEN_TYPE: int
|
||||
MCI_SEEK_TO_START: int
|
||||
MCI_SEEK_TO_END: int
|
||||
MCI_STATUS_ITEM: int
|
||||
MCI_STATUS_START: int
|
||||
MCI_STATUS_LENGTH: int
|
||||
MCI_STATUS_POSITION: int
|
||||
MCI_STATUS_NUMBER_OF_TRACKS: int
|
||||
MCI_STATUS_MODE: int
|
||||
MCI_STATUS_MEDIA_PRESENT: int
|
||||
MCI_STATUS_TIME_FORMAT: int
|
||||
MCI_STATUS_READY: int
|
||||
MCI_STATUS_CURRENT_TRACK: int
|
||||
MCI_INFO_PRODUCT: int
|
||||
MCI_INFO_FILE: int
|
||||
MCI_INFO_MEDIA_UPC: int
|
||||
MCI_INFO_MEDIA_IDENTITY: int
|
||||
MCI_INFO_NAME: int
|
||||
MCI_INFO_COPYRIGHT: int
|
||||
MCI_GETDEVCAPS_ITEM: int
|
||||
MCI_GETDEVCAPS_CAN_RECORD: int
|
||||
MCI_GETDEVCAPS_HAS_AUDIO: int
|
||||
MCI_GETDEVCAPS_HAS_VIDEO: int
|
||||
MCI_GETDEVCAPS_DEVICE_TYPE: int
|
||||
MCI_GETDEVCAPS_USES_FILES: int
|
||||
MCI_GETDEVCAPS_COMPOUND_DEVICE: int
|
||||
MCI_GETDEVCAPS_CAN_EJECT: int
|
||||
MCI_GETDEVCAPS_CAN_PLAY: int
|
||||
MCI_GETDEVCAPS_CAN_SAVE: int
|
||||
MCI_SYSINFO_QUANTITY: int
|
||||
MCI_SYSINFO_OPEN: int
|
||||
MCI_SYSINFO_NAME: int
|
||||
MCI_SYSINFO_INSTALLNAME: int
|
||||
MCI_SET_DOOR_OPEN: int
|
||||
MCI_SET_DOOR_CLOSED: int
|
||||
MCI_SET_TIME_FORMAT: int
|
||||
MCI_SET_AUDIO: int
|
||||
MCI_SET_VIDEO: int
|
||||
MCI_SET_ON: int
|
||||
MCI_SET_OFF: int
|
||||
MCI_SET_AUDIO_ALL: int
|
||||
MCI_SET_AUDIO_LEFT: int
|
||||
MCI_SET_AUDIO_RIGHT: int
|
||||
MCI_BREAK_KEY: int
|
||||
MCI_BREAK_HWND: int
|
||||
MCI_BREAK_OFF: int
|
||||
MCI_RECORD_INSERT: int
|
||||
MCI_RECORD_OVERWRITE: int
|
||||
MCI_SAVE_FILE: int
|
||||
MCI_LOAD_FILE: int
|
||||
MCI_VD_MODE_PARK: Incomplete
|
||||
MCI_VD_MEDIA_CLV: Incomplete
|
||||
MCI_VD_MEDIA_CAV: Incomplete
|
||||
MCI_VD_MEDIA_OTHER: Incomplete
|
||||
MCI_VD_FORMAT_TRACK: int
|
||||
MCI_VD_PLAY_REVERSE: int
|
||||
MCI_VD_PLAY_FAST: int
|
||||
MCI_VD_PLAY_SPEED: int
|
||||
MCI_VD_PLAY_SCAN: int
|
||||
MCI_VD_PLAY_SLOW: int
|
||||
MCI_VD_SEEK_REVERSE: int
|
||||
MCI_VD_STATUS_SPEED: int
|
||||
MCI_VD_STATUS_FORWARD: int
|
||||
MCI_VD_STATUS_MEDIA_TYPE: int
|
||||
MCI_VD_STATUS_SIDE: int
|
||||
MCI_VD_STATUS_DISC_SIZE: int
|
||||
MCI_VD_GETDEVCAPS_CLV: int
|
||||
MCI_VD_GETDEVCAPS_CAV: int
|
||||
MCI_VD_SPIN_UP: int
|
||||
MCI_VD_SPIN_DOWN: int
|
||||
MCI_VD_GETDEVCAPS_CAN_REVERSE: int
|
||||
MCI_VD_GETDEVCAPS_FAST_RATE: int
|
||||
MCI_VD_GETDEVCAPS_SLOW_RATE: int
|
||||
MCI_VD_GETDEVCAPS_NORMAL_RATE: int
|
||||
MCI_VD_STEP_FRAMES: int
|
||||
MCI_VD_STEP_REVERSE: int
|
||||
MCI_VD_ESCAPE_STRING: int
|
||||
MCI_CDA_STATUS_TYPE_TRACK: int
|
||||
MCI_CDA_TRACK_AUDIO: Incomplete
|
||||
MCI_CDA_TRACK_OTHER: Incomplete
|
||||
MCI_WAVE_PCM: Incomplete
|
||||
MCI_WAVE_MAPPER: Incomplete
|
||||
MCI_WAVE_OPEN_BUFFER: int
|
||||
MCI_WAVE_SET_FORMATTAG: int
|
||||
MCI_WAVE_SET_CHANNELS: int
|
||||
MCI_WAVE_SET_SAMPLESPERSEC: int
|
||||
MCI_WAVE_SET_AVGBYTESPERSEC: int
|
||||
MCI_WAVE_SET_BLOCKALIGN: int
|
||||
MCI_WAVE_SET_BITSPERSAMPLE: int
|
||||
MCI_WAVE_INPUT: int
|
||||
MCI_WAVE_OUTPUT: int
|
||||
MCI_WAVE_STATUS_FORMATTAG: int
|
||||
MCI_WAVE_STATUS_CHANNELS: int
|
||||
MCI_WAVE_STATUS_SAMPLESPERSEC: int
|
||||
MCI_WAVE_STATUS_AVGBYTESPERSEC: int
|
||||
MCI_WAVE_STATUS_BLOCKALIGN: int
|
||||
MCI_WAVE_STATUS_BITSPERSAMPLE: int
|
||||
MCI_WAVE_STATUS_LEVEL: int
|
||||
MCI_WAVE_SET_ANYINPUT: int
|
||||
MCI_WAVE_SET_ANYOUTPUT: int
|
||||
MCI_WAVE_GETDEVCAPS_INPUTS: int
|
||||
MCI_WAVE_GETDEVCAPS_OUTPUTS: int
|
||||
MCI_SEQ_DIV_PPQN: Incomplete
|
||||
MCI_SEQ_DIV_SMPTE_24: Incomplete
|
||||
MCI_SEQ_DIV_SMPTE_25: Incomplete
|
||||
MCI_SEQ_DIV_SMPTE_30DROP: Incomplete
|
||||
MCI_SEQ_DIV_SMPTE_30: Incomplete
|
||||
MCI_SEQ_FORMAT_SONGPTR: int
|
||||
MCI_SEQ_FILE: int
|
||||
MCI_SEQ_MIDI: int
|
||||
MCI_SEQ_SMPTE: int
|
||||
MCI_SEQ_NONE: int
|
||||
MCI_SEQ_MAPPER: int
|
||||
MCI_SEQ_STATUS_TEMPO: int
|
||||
MCI_SEQ_STATUS_PORT: int
|
||||
MCI_SEQ_STATUS_SLAVE: int
|
||||
MCI_SEQ_STATUS_MASTER: int
|
||||
MCI_SEQ_STATUS_OFFSET: int
|
||||
MCI_SEQ_STATUS_DIVTYPE: int
|
||||
MCI_SEQ_STATUS_NAME: int
|
||||
MCI_SEQ_STATUS_COPYRIGHT: int
|
||||
MCI_SEQ_SET_TEMPO: int
|
||||
MCI_SEQ_SET_PORT: int
|
||||
MCI_SEQ_SET_SLAVE: int
|
||||
MCI_SEQ_SET_MASTER: int
|
||||
MCI_SEQ_SET_OFFSET: int
|
||||
MCI_ANIM_OPEN_WS: int
|
||||
MCI_ANIM_OPEN_PARENT: int
|
||||
MCI_ANIM_OPEN_NOSTATIC: int
|
||||
MCI_ANIM_PLAY_SPEED: int
|
||||
MCI_ANIM_PLAY_REVERSE: int
|
||||
MCI_ANIM_PLAY_FAST: int
|
||||
MCI_ANIM_PLAY_SLOW: int
|
||||
MCI_ANIM_PLAY_SCAN: int
|
||||
MCI_ANIM_STEP_REVERSE: int
|
||||
MCI_ANIM_STEP_FRAMES: int
|
||||
MCI_ANIM_STATUS_SPEED: int
|
||||
MCI_ANIM_STATUS_FORWARD: int
|
||||
MCI_ANIM_STATUS_HWND: int
|
||||
MCI_ANIM_STATUS_HPAL: int
|
||||
MCI_ANIM_STATUS_STRETCH: int
|
||||
MCI_ANIM_INFO_TEXT: int
|
||||
MCI_ANIM_GETDEVCAPS_CAN_REVERSE: int
|
||||
MCI_ANIM_GETDEVCAPS_FAST_RATE: int
|
||||
MCI_ANIM_GETDEVCAPS_SLOW_RATE: int
|
||||
MCI_ANIM_GETDEVCAPS_NORMAL_RATE: int
|
||||
MCI_ANIM_GETDEVCAPS_PALETTES: int
|
||||
MCI_ANIM_GETDEVCAPS_CAN_STRETCH: int
|
||||
MCI_ANIM_GETDEVCAPS_MAX_WINDOWS: int
|
||||
MCI_ANIM_REALIZE_NORM: int
|
||||
MCI_ANIM_REALIZE_BKGD: int
|
||||
MCI_ANIM_WINDOW_HWND: int
|
||||
MCI_ANIM_WINDOW_STATE: int
|
||||
MCI_ANIM_WINDOW_TEXT: int
|
||||
MCI_ANIM_WINDOW_ENABLE_STRETCH: int
|
||||
MCI_ANIM_WINDOW_DISABLE_STRETCH: int
|
||||
MCI_ANIM_WINDOW_DEFAULT: int
|
||||
MCI_ANIM_RECT: int
|
||||
MCI_ANIM_PUT_SOURCE: int
|
||||
MCI_ANIM_PUT_DESTINATION: int
|
||||
MCI_ANIM_WHERE_SOURCE: int
|
||||
MCI_ANIM_WHERE_DESTINATION: int
|
||||
MCI_ANIM_UPDATE_HDC: int
|
||||
MCI_OVLY_OPEN_WS: int
|
||||
MCI_OVLY_OPEN_PARENT: int
|
||||
MCI_OVLY_STATUS_HWND: int
|
||||
MCI_OVLY_STATUS_STRETCH: int
|
||||
MCI_OVLY_INFO_TEXT: int
|
||||
MCI_OVLY_GETDEVCAPS_CAN_STRETCH: int
|
||||
MCI_OVLY_GETDEVCAPS_CAN_FREEZE: int
|
||||
MCI_OVLY_GETDEVCAPS_MAX_WINDOWS: int
|
||||
MCI_OVLY_WINDOW_HWND: int
|
||||
MCI_OVLY_WINDOW_STATE: int
|
||||
MCI_OVLY_WINDOW_TEXT: int
|
||||
MCI_OVLY_WINDOW_ENABLE_STRETCH: int
|
||||
MCI_OVLY_WINDOW_DISABLE_STRETCH: int
|
||||
MCI_OVLY_WINDOW_DEFAULT: int
|
||||
MCI_OVLY_RECT: int
|
||||
MCI_OVLY_PUT_SOURCE: int
|
||||
MCI_OVLY_PUT_DESTINATION: int
|
||||
MCI_OVLY_PUT_FRAME: int
|
||||
MCI_OVLY_PUT_VIDEO: int
|
||||
MCI_OVLY_WHERE_SOURCE: int
|
||||
MCI_OVLY_WHERE_DESTINATION: int
|
||||
MCI_OVLY_WHERE_FRAME: int
|
||||
MCI_OVLY_WHERE_VIDEO: int
|
||||
SELECTDIB: int
|
||||
|
||||
def DIBINDEX(n): ...
|
||||
@@ -1,7 +1,3 @@
|
||||
from typing import Any
|
||||
|
||||
def __getattr__(name: str) -> Any: ... # incomplete
|
||||
|
||||
DELETE: int
|
||||
READ_CONTROL: int
|
||||
WRITE_DAC: int
|
||||
@@ -545,3 +541,10 @@ SI_PAGE_AUDIT: int
|
||||
SI_PAGE_OWNER: int
|
||||
SI_PAGE_EFFECTIVE: int
|
||||
PSPCB_SI_INITDIALOG: int
|
||||
ACTRL_DS_LIST: int
|
||||
ACTRL_DS_LIST_OBJECT: int
|
||||
CFSTR_ACLUI_SID_INFO_LIST: str
|
||||
DS_LIST_ACCOUNT_OBJECT_FOR_SERVER: int
|
||||
DS_LIST_DNS_HOST_NAME_FOR_SERVER: int
|
||||
DS_LIST_DSA_OBJECT_FOR_SERVER: int
|
||||
FILE_LIST_DIRECTORY: int
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
# Can't generate with stubgen because:
|
||||
# "KeyError: 'pywintypes'"
|
||||
from _typeshed import Incomplete
|
||||
from typing import Any
|
||||
from typing_extensions import Literal
|
||||
|
||||
import _win32typing
|
||||
|
||||
def __getattr__(name: str) -> Any: ... # incomplete
|
||||
|
||||
class error(Exception): ...
|
||||
class com_error(Exception): ...
|
||||
|
||||
@@ -23,3 +23,8 @@ def SECURITY_DESCRIPTOR() -> _win32typing.PySECURITY_DESCRIPTOR: ...
|
||||
def HANDLE() -> int: ...
|
||||
def HKEY() -> _win32typing.PyHKEY: ...
|
||||
def WAVEFORMATEX() -> _win32typing.PyWAVEFORMATEX: ...
|
||||
|
||||
FALSE: Literal[False]
|
||||
TRUE: Literal[True]
|
||||
|
||||
def TimeStamp(*args, **kwargs): ... # incomplete
|
||||
|
||||
27
stubs/pywin32/win32/lib/regutil.pyi
Normal file
27
stubs/pywin32/win32/lib/regutil.pyi
Normal file
@@ -0,0 +1,27 @@
|
||||
from _typeshed import Incomplete
|
||||
|
||||
error: str
|
||||
CLSIDPyFile: str
|
||||
RegistryIDPyFile: str
|
||||
RegistryIDPycFile: str
|
||||
|
||||
def BuildDefaultPythonKey(): ...
|
||||
def GetRootKey(): ...
|
||||
def GetRegistryDefaultValue(subkey, rootkey: Incomplete | None = ...): ...
|
||||
def SetRegistryDefaultValue(subKey, value, rootkey: Incomplete | None = ...) -> None: ...
|
||||
def GetAppPathsKey(): ...
|
||||
def RegisterPythonExe(exeFullPath, exeAlias: Incomplete | None = ..., exeAppPath: Incomplete | None = ...) -> None: ...
|
||||
def GetRegisteredExe(exeAlias): ...
|
||||
def UnregisterPythonExe(exeAlias) -> None: ...
|
||||
def RegisterNamedPath(name, path) -> None: ...
|
||||
def UnregisterNamedPath(name) -> None: ...
|
||||
def GetRegisteredNamedPath(name): ...
|
||||
def RegisterModule(modName, modPath) -> None: ...
|
||||
def UnregisterModule(modName) -> None: ...
|
||||
def GetRegisteredHelpFile(helpDesc): ...
|
||||
def RegisterHelpFile(helpFile, helpPath, helpDesc: Incomplete | None = ..., bCheckFile: int = ...) -> None: ...
|
||||
def UnregisterHelpFile(helpFile, helpDesc: Incomplete | None = ...) -> None: ...
|
||||
def RegisterCoreDLL(coredllName: Incomplete | None = ...) -> None: ...
|
||||
def RegisterFileExtensions(defPyIcon, defPycIcon, runCommand) -> None: ...
|
||||
def RegisterShellCommand(shellCommand, exeCommand, shellUserCommand: Incomplete | None = ...) -> None: ...
|
||||
def RegisterDDECommand(shellCommand, ddeApp, ddeTopic, ddeCommand) -> None: ...
|
||||
@@ -1,7 +1,3 @@
|
||||
from typing import Any
|
||||
|
||||
def __getattr__(name: str) -> Any: ... # incomplete
|
||||
|
||||
ISSP_LEVEL: int
|
||||
ISSP_MODE: int
|
||||
|
||||
@@ -453,3 +449,9 @@ MsV1_0DeriveCredential: int
|
||||
MsV1_0CacheLookup: int
|
||||
MsV1_0SetProcessOption: int
|
||||
SEC_E_OK: int
|
||||
SECBUFFER_MECHLIST: int
|
||||
SECBUFFER_MECHLIST_SIGNATURE: int
|
||||
SECPKG_ATTR_ISSUER_LIST_EX: int
|
||||
SEC_E_INCOMPLETE_CREDENTIALS: int
|
||||
SEC_E_INCOMPLETE_MESSAGE: int
|
||||
SEC_I_INCOMPLETE_CREDENTIALS: int
|
||||
|
||||
@@ -1,9 +1,34 @@
|
||||
from typing import Any
|
||||
|
||||
def __getattr__(name: str) -> Any: ... # incomplete
|
||||
|
||||
RASEAPF_Logon: int
|
||||
RASEAPF_NonInteractive: int
|
||||
RASEAPF_Preview: int
|
||||
|
||||
def GetEapUserIdentity(*args, **kwargs): ... # incomplete
|
||||
|
||||
RASCS_AllDevicesConnected: int
|
||||
RASCS_AuthAck: int
|
||||
RASCS_AuthCallback: int
|
||||
RASCS_AuthChangePassword: int
|
||||
RASCS_AuthLinkSpeed: int
|
||||
RASCS_AuthNotify: int
|
||||
RASCS_AuthProject: int
|
||||
RASCS_AuthRetry: int
|
||||
RASCS_Authenticate: int
|
||||
RASCS_Authenticated: int
|
||||
RASCS_CallbackComplete: int
|
||||
RASCS_CallbackSetByCaller: int
|
||||
RASCS_ConnectDevice: int
|
||||
RASCS_Connected: int
|
||||
RASCS_DeviceConnected: int
|
||||
RASCS_Disconnected: int
|
||||
RASCS_Interactive: int
|
||||
RASCS_LogonNetwork: int
|
||||
RASCS_OpenPort: int
|
||||
RASCS_PasswordExpired: int
|
||||
RASCS_PortOpened: int
|
||||
RASCS_PrepareForCallback: int
|
||||
RASCS_Projected: int
|
||||
RASCS_ReAuthenticate: int
|
||||
RASCS_RetryAuthentication: int
|
||||
RASCS_StartAuthentication: int
|
||||
RASCS_WaitForCallback: int
|
||||
RASCS_WaitForModemReset: int
|
||||
|
||||
@@ -1,7 +1,3 @@
|
||||
from typing import Any
|
||||
|
||||
def __getattr__(name: str) -> Any: ... # incomplete
|
||||
|
||||
WINVER: int
|
||||
WM_USER: int
|
||||
PY_0U: int
|
||||
@@ -4751,3 +4747,32 @@ DBTF_XPORT: int
|
||||
DBTF_SLOWNET: int
|
||||
DBT_VPOWERDAPI: int
|
||||
DBT_USERDEFINED: int
|
||||
CBS_DROPDOWNLIST: int
|
||||
CDM_GETFOLDERIDLIST: int
|
||||
CTLCOLOR_LISTBOX: int
|
||||
DBT_APPYBEGIN: int
|
||||
FILE_NAMED_STREAMS: int
|
||||
FILE_READ_ONLY_VOLUME: int
|
||||
FILE_SEQUENTIAL_WRITE_ONCE: int
|
||||
FILE_SUPPORTS_ENCRYPTION: int
|
||||
FILE_SUPPORTS_EXTENDED_ATTRIBUTES: int
|
||||
FILE_SUPPORTS_HARD_LINKS: int
|
||||
FILE_SUPPORTS_OBJECT_IDS: int
|
||||
FILE_SUPPORTS_OPEN_BY_FILE_ID: int
|
||||
FILE_SUPPORTS_REPARSE_POINTS: int
|
||||
FILE_SUPPORTS_SPARSE_FILES: int
|
||||
FILE_SUPPORTS_TRANSACTIONS: int
|
||||
FILE_SUPPORTS_USN_JOURNAL: int
|
||||
FILE_VOLUME_QUOTAS: int
|
||||
KEYEVENTF_SCANCODE: int
|
||||
KEYEVENTF_UNICODE: int
|
||||
MOUSEEVENTF_HWHEEL: int
|
||||
MOUSEEVENTF_MOVE_NOCOALESCE: int
|
||||
MOUSEEVENTF_VIRTUALDESK: int
|
||||
ODT_LISTBOX: int
|
||||
REG_RESOURCE_LIST: int
|
||||
REG_RESOURCE_REQUIREMENTS_LIST: int
|
||||
SC_TASKLIST: int
|
||||
SPI_GETLISTBOXSMOOTHSCROLLING: int
|
||||
SPI_SETLISTBOXSMOOTHSCROLLING: int
|
||||
WM_CTLCOLORLISTBOX: int
|
||||
|
||||
@@ -1,6 +1,3 @@
|
||||
from typing import Any
|
||||
|
||||
def __getattr__(name: str) -> Any: ... # incomplete
|
||||
def GET_ALG_CLASS(x: int) -> int: ...
|
||||
def GET_ALG_TYPE(x: int) -> int: ...
|
||||
def GET_ALG_SID(x: int) -> int: ...
|
||||
@@ -1780,3 +1777,14 @@ URL_OID_CERTIFICATE_OCSP_AND_CRL_DIST_POINT: int
|
||||
URL_OID_CERTIFICATE_CRL_DIST_POINT_AND_OCSP: int
|
||||
URL_OID_CROSS_CERT_SUBJECT_INFO_ACCESS: int
|
||||
URL_OID_CERTIFICATE_ONLY_OCSP: int
|
||||
CMSG_CTRL_MAIL_LIST_DECRYPT: int
|
||||
CMSG_MAIL_LIST_ENCRYPT_FREE_PARA_FLAG: int
|
||||
CMSG_MAIL_LIST_HANDLE_KEY_CHOICE: int
|
||||
CMSG_MAIL_LIST_RECIPIENT: int
|
||||
CMSG_MAIL_LIST_VERSION: int
|
||||
CMSG_OID_EXPORT_MAIL_LIST_FUNC: str
|
||||
CMSG_OID_IMPORT_MAIL_LIST_FUNC: str
|
||||
CTL_FIND_NO_LIST_ID_CBDATA: int
|
||||
szOID_AUTHORITY_REVOCATION_LIST: str
|
||||
szOID_CERTIFICATE_REVOCATION_LIST: str
|
||||
szOID_ROOT_LIST_SIGNER: str
|
||||
|
||||
21
stubs/pywin32/win32/lib/win32evtlogutil.pyi
Normal file
21
stubs/pywin32/win32/lib/win32evtlogutil.pyi
Normal file
@@ -0,0 +1,21 @@
|
||||
from _typeshed import Incomplete
|
||||
|
||||
error: Incomplete
|
||||
langid: Incomplete
|
||||
|
||||
def AddSourceToRegistry(
|
||||
appName, msgDLL: Incomplete | None = ..., eventLogType: str = ..., eventLogFlags: Incomplete | None = ...
|
||||
) -> None: ...
|
||||
def RemoveSourceFromRegistry(appName, eventLogType: str = ...) -> None: ...
|
||||
def ReportEvent(
|
||||
appName,
|
||||
eventID,
|
||||
eventCategory: int = ...,
|
||||
eventType=...,
|
||||
strings: Incomplete | None = ...,
|
||||
data: Incomplete | None = ...,
|
||||
sid: Incomplete | None = ...,
|
||||
) -> None: ...
|
||||
def FormatMessage(eventLogRecord, logType: str = ...): ...
|
||||
def SafeFormatMessage(eventLogRecord, logType: Incomplete | None = ...): ...
|
||||
def FeedEventLogRecords(feeder, machineName: Incomplete | None = ..., logName: str = ..., readFlags: Incomplete | None = ...): ...
|
||||
@@ -1,7 +1,3 @@
|
||||
from typing import Any
|
||||
|
||||
def __getattr__(name: str) -> Any: ... # incomplete
|
||||
|
||||
INTERNET_INVALID_PORT_NUMBER: int
|
||||
INTERNET_DEFAULT_FTP_PORT: int
|
||||
INTERNET_DEFAULT_GOPHER_PORT: int
|
||||
@@ -989,3 +985,5 @@ WINHTTP_NO_REFERER: None
|
||||
WINHTTP_DEFAULT_ACCEPT_TYPES: None
|
||||
WINHTTP_NO_ADDITIONAL_HEADERS: None
|
||||
WINHTTP_NO_REQUEST_DATA: None
|
||||
INTERNET_OPTION_LISTEN_TIMEOUT: int
|
||||
WINHTTP_OPTION_CLIENT_CERT_ISSUER_LIST: int
|
||||
|
||||
@@ -1,7 +1,3 @@
|
||||
from typing import Any
|
||||
|
||||
def __getattr__(name: str) -> Any: ... # incomplete
|
||||
|
||||
CNLEN: int
|
||||
LM20_CNLEN: int
|
||||
DNLEN: int
|
||||
@@ -567,3 +563,9 @@ NetSetupDomainName: int
|
||||
NetValidateAuthentication: int
|
||||
NetValidatePasswordChange: int
|
||||
NetValidatePasswordReset: int
|
||||
ACCESS_ACCESS_LIST_INFOLEVEL: int
|
||||
ACCESS_ACCESS_LIST_PARMNUM: int
|
||||
SV_ALIST_MTIME_PARMNUM: int
|
||||
SV_GLIST_MTIME_PARMNUM: int
|
||||
SV_TYPE_LOCAL_LIST_ONLY: int
|
||||
SV_ULIST_MTIME_PARMNUM: int
|
||||
|
||||
42
stubs/pywin32/win32/lib/win32pdhquery.pyi
Normal file
42
stubs/pywin32/win32/lib/win32pdhquery.pyi
Normal file
@@ -0,0 +1,42 @@
|
||||
from _typeshed import Incomplete
|
||||
|
||||
class BaseQuery:
|
||||
counters: Incomplete
|
||||
paths: Incomplete
|
||||
active: int
|
||||
curpaths: Incomplete
|
||||
def __init__(self, paths: Incomplete | None = ...) -> None: ...
|
||||
def addcounterbybrowsing(self, flags=..., windowtitle: str = ...) -> None: ...
|
||||
def rawaddcounter(
|
||||
self, object, counter, instance: Incomplete | None = ..., inum: int = ..., machine: Incomplete | None = ...
|
||||
) -> None: ...
|
||||
def addcounter(
|
||||
self, object, counter, instance: Incomplete | None = ..., inum: int = ..., machine: Incomplete | None = ...
|
||||
): ...
|
||||
def open(self): ...
|
||||
def killbase(self, base: Incomplete | None = ...) -> None: ...
|
||||
def close(self) -> None: ...
|
||||
__del__: Incomplete
|
||||
def collectdata(self, format=...): ...
|
||||
def collectdataslave(self, format=...): ...
|
||||
def __getinitargs__(self): ...
|
||||
|
||||
class Query(BaseQuery):
|
||||
volatilecounters: Incomplete
|
||||
def __init__(self, *args, **namedargs) -> None: ...
|
||||
def addinstcounter(
|
||||
self, object, counter, machine: Incomplete | None = ..., objtype: str = ..., volatile: int = ..., format=...
|
||||
) -> None: ...
|
||||
def getinstpaths(self, object, counter, machine: Incomplete | None = ..., objtype: str = ..., format=...): ...
|
||||
def open(self, *args, **namedargs) -> None: ...
|
||||
curresults: Incomplete
|
||||
def collectdatafor(self, totalperiod, period: int = ...) -> None: ...
|
||||
collectdatawhile_active: int
|
||||
def collectdatawhile(self, period: int = ...) -> None: ...
|
||||
def collectdatawhile_stop(self) -> None: ...
|
||||
def collectdatawhile_slave(self, period) -> None: ...
|
||||
def __getinitargs__(self): ...
|
||||
|
||||
class QueryError:
|
||||
query: Incomplete
|
||||
def __init__(self, query) -> None: ...
|
||||
73
stubs/pywin32/win32/lib/win32timezone.pyi
Normal file
73
stubs/pywin32/win32/lib/win32timezone.pyi
Normal file
@@ -0,0 +1,73 @@
|
||||
import datetime
|
||||
from _typeshed import Incomplete
|
||||
|
||||
log: Incomplete
|
||||
|
||||
class _SimpleStruct:
|
||||
def __init__(self, *args, **kw) -> None: ...
|
||||
def field_names(self): ...
|
||||
def __eq__(self, other): ...
|
||||
def __ne__(self, other): ...
|
||||
|
||||
class SYSTEMTIME(_SimpleStruct): ...
|
||||
class TIME_ZONE_INFORMATION(_SimpleStruct): ...
|
||||
class DYNAMIC_TIME_ZONE_INFORMATION(_SimpleStruct): ...
|
||||
|
||||
class TimeZoneDefinition(DYNAMIC_TIME_ZONE_INFORMATION):
|
||||
def __init__(self, *args, **kwargs) -> None: ...
|
||||
def __getattribute__(self, attr): ...
|
||||
@classmethod
|
||||
def current(cls): ...
|
||||
def set(self) -> None: ...
|
||||
def copy(self): ...
|
||||
def locate_daylight_start(self, year): ...
|
||||
def locate_standard_start(self, year): ...
|
||||
|
||||
class TimeZoneInfo(datetime.tzinfo):
|
||||
tzRegKey: str
|
||||
timeZoneName: Incomplete
|
||||
fixedStandardTime: Incomplete
|
||||
def __init__(self, param: Incomplete | None = ..., fix_standard_time: bool = ...) -> None: ...
|
||||
def tzname(self, dt): ...
|
||||
def getWinInfo(self, targetYear): ...
|
||||
def utcoffset(self, dt): ...
|
||||
def dst(self, dt): ...
|
||||
def GetDSTStartTime(self, year): ...
|
||||
def GetDSTEndTime(self, year): ...
|
||||
def __cmp__(self, other): ...
|
||||
def __eq__(self, other): ...
|
||||
def __ne__(self, other): ...
|
||||
@classmethod
|
||||
def local(cls): ...
|
||||
@classmethod
|
||||
def utc(cls): ...
|
||||
@staticmethod
|
||||
def get_sorted_time_zone_names(): ...
|
||||
@staticmethod
|
||||
def get_all_time_zones(): ...
|
||||
@staticmethod
|
||||
def get_sorted_time_zones(key: Incomplete | None = ...): ...
|
||||
|
||||
def utcnow(): ...
|
||||
def now(): ...
|
||||
def GetTZCapabilities(): ...
|
||||
|
||||
class DLLHandleCache:
|
||||
def __getitem__(self, filename): ...
|
||||
|
||||
DLLCache: Incomplete
|
||||
|
||||
def resolveMUITimeZone(spec): ...
|
||||
|
||||
class RangeMap(dict[int, str]):
|
||||
sort_params: Incomplete
|
||||
match: Incomplete
|
||||
def __init__(self, source, sort_params=..., key_match_comparator=...) -> None: ...
|
||||
def __getitem__(self, item): ...
|
||||
def get(self, key, default: Incomplete | None = ...): ...
|
||||
def bounds(self): ...
|
||||
undefined_value: Incomplete
|
||||
|
||||
class Item(int): ...
|
||||
first_item: Incomplete
|
||||
last_item: Incomplete
|
||||
2586
stubs/pywin32/win32/lib/winerror.pyi
Normal file
2586
stubs/pywin32/win32/lib/winerror.pyi
Normal file
File diff suppressed because it is too large
Load Diff
@@ -1,8 +1,5 @@
|
||||
from typing import Any
|
||||
|
||||
import _win32typing
|
||||
|
||||
def __getattr__(name: str) -> Any: ... # incomplete
|
||||
def CTL_CODE(DeviceType: int, Function: int, Method: int, Access: int) -> int: ...
|
||||
def DEVICE_TYPE_FROM_CTL_CODE(ctrlCode: int) -> int: ...
|
||||
|
||||
@@ -658,3 +655,7 @@ DeviceProblemSensorError: int
|
||||
DeviceProblemCartridgeEjectError: int
|
||||
DeviceProblemGripperError: int
|
||||
DeviceProblemDriveError: int
|
||||
FILE_READ_DATA: int
|
||||
FILE_WRITE_DATA: int
|
||||
FSCTL_TXFS_LIST_TRANSACTIONS: int
|
||||
FSCTL_TXFS_LIST_TRANSACTION_LOCKED_FILES: int
|
||||
|
||||
1137
stubs/pywin32/win32/lib/winnt.pyi
Normal file
1137
stubs/pywin32/win32/lib/winnt.pyi
Normal file
File diff suppressed because it is too large
Load Diff
73
stubs/pywin32/win32/lib/winperf.pyi
Normal file
73
stubs/pywin32/win32/lib/winperf.pyi
Normal file
@@ -0,0 +1,73 @@
|
||||
from _typeshed import Incomplete
|
||||
|
||||
PERF_DATA_VERSION: int
|
||||
PERF_DATA_REVISION: int
|
||||
PERF_NO_INSTANCES: int
|
||||
PERF_SIZE_DWORD: int
|
||||
PERF_SIZE_LARGE: int
|
||||
PERF_SIZE_ZERO: int
|
||||
PERF_SIZE_VARIABLE_LEN: int
|
||||
PERF_TYPE_NUMBER: int
|
||||
PERF_TYPE_COUNTER: int
|
||||
PERF_TYPE_TEXT: int
|
||||
PERF_TYPE_ZERO: int
|
||||
PERF_NUMBER_HEX: int
|
||||
PERF_NUMBER_DECIMAL: int
|
||||
PERF_NUMBER_DEC_1000: int
|
||||
PERF_COUNTER_VALUE: int
|
||||
PERF_COUNTER_RATE: int
|
||||
PERF_COUNTER_FRACTION: int
|
||||
PERF_COUNTER_BASE: int
|
||||
PERF_COUNTER_ELAPSED: int
|
||||
PERF_COUNTER_QUEUELEN: int
|
||||
PERF_COUNTER_HISTOGRAM: int
|
||||
PERF_TEXT_UNICODE: int
|
||||
PERF_TEXT_ASCII: int
|
||||
PERF_TIMER_TICK: int
|
||||
PERF_TIMER_100NS: int
|
||||
PERF_OBJECT_TIMER: int
|
||||
PERF_DELTA_COUNTER: int
|
||||
PERF_DELTA_BASE: int
|
||||
PERF_INVERSE_COUNTER: int
|
||||
PERF_MULTI_COUNTER: int
|
||||
PERF_DISPLAY_NO_SUFFIX: int
|
||||
PERF_DISPLAY_PER_SEC: int
|
||||
PERF_DISPLAY_PERCENT: int
|
||||
PERF_DISPLAY_SECONDS: int
|
||||
PERF_DISPLAY_NOSHOW: int
|
||||
PERF_COUNTER_COUNTER: Incomplete
|
||||
PERF_COUNTER_TIMER: Incomplete
|
||||
PERF_COUNTER_QUEUELEN_TYPE: Incomplete
|
||||
PERF_COUNTER_LARGE_QUEUELEN_TYPE: Incomplete
|
||||
PERF_COUNTER_BULK_COUNT: Incomplete
|
||||
PERF_COUNTER_TEXT: Incomplete
|
||||
PERF_COUNTER_RAWCOUNT: Incomplete
|
||||
PERF_COUNTER_LARGE_RAWCOUNT: Incomplete
|
||||
PERF_COUNTER_RAWCOUNT_HEX: Incomplete
|
||||
PERF_COUNTER_LARGE_RAWCOUNT_HEX: Incomplete
|
||||
PERF_SAMPLE_FRACTION: Incomplete
|
||||
PERF_SAMPLE_COUNTER: Incomplete
|
||||
PERF_COUNTER_NODATA: Incomplete
|
||||
PERF_COUNTER_TIMER_INV: Incomplete
|
||||
PERF_SAMPLE_BASE: Incomplete
|
||||
PERF_AVERAGE_TIMER: Incomplete
|
||||
PERF_AVERAGE_BASE: Incomplete
|
||||
PERF_AVERAGE_BULK: Incomplete
|
||||
PERF_100NSEC_TIMER: Incomplete
|
||||
PERF_100NSEC_TIMER_INV: Incomplete
|
||||
PERF_COUNTER_MULTI_TIMER: Incomplete
|
||||
PERF_COUNTER_MULTI_TIMER_INV: Incomplete
|
||||
PERF_COUNTER_MULTI_BASE: Incomplete
|
||||
PERF_100NSEC_MULTI_TIMER: Incomplete
|
||||
PERF_100NSEC_MULTI_TIMER_INV: Incomplete
|
||||
PERF_RAW_FRACTION: Incomplete
|
||||
PERF_RAW_BASE: Incomplete
|
||||
PERF_ELAPSED_TIME: Incomplete
|
||||
PERF_COUNTER_HISTOGRAM_TYPE: int
|
||||
PERF_COUNTER_DELTA: Incomplete
|
||||
PERF_COUNTER_LARGE_DELTA: Incomplete
|
||||
PERF_DETAIL_NOVICE: int
|
||||
PERF_DETAIL_ADVANCED: int
|
||||
PERF_DETAIL_EXPERT: int
|
||||
PERF_DETAIL_WIZARD: int
|
||||
PERF_NO_UNIQUE_ID: int
|
||||
@@ -22,3 +22,4 @@ ETDT_DISABLE: int
|
||||
ETDT_ENABLE: int
|
||||
ETDT_ENABLETAB: int
|
||||
ETDT_USETABTEXTURE: int
|
||||
UNICODE: int
|
||||
@@ -7,7 +7,6 @@ def odbc(connectionString: str) -> _win32typing.connection: ...
|
||||
def SQLDataSources(direction) -> tuple[Incomplete, Incomplete]: ...
|
||||
|
||||
_odbcError: TypeAlias = type # noqa: Y042 # Does not exist at runtime, but odbc.odbcError is a valid type.
|
||||
|
||||
DATE: str
|
||||
NUMBER: str
|
||||
RAW: str
|
||||
|
||||
@@ -414,7 +414,6 @@ def ImageList_SetOverlayImage(*args, **kwargs): ... # incomplete
|
||||
def LOWORD(*args, **kwargs): ... # incomplete
|
||||
def ListView_SortItems(*args, **kwargs): ... # incomplete
|
||||
def ListView_SortItemsEx(*args, **kwargs): ... # incomplete
|
||||
def PyMakeBuffer(*args, **kwargs): ... # incomplete
|
||||
def ValidateRect(*args, **kwargs): ... # incomplete
|
||||
def WNDCLASS(*args, **kwargs): ... # incomplete
|
||||
def lpstr(*args, **kwargs): ... # incomplete
|
||||
|
||||
@@ -1,9 +1,7 @@
|
||||
from _typeshed import Incomplete
|
||||
from typing import Any
|
||||
|
||||
from win32.lib.pywintypes import error as error
|
||||
|
||||
def __getattr__(name: str) -> Any: ... # incomplete
|
||||
def AddCounter(hQuery, path: str, userData: int = ...): ...
|
||||
def AddEnglishCounter(hQuery, path: str, userData: int = ...): ...
|
||||
def RemoveCounter(handle) -> None: ...
|
||||
@@ -58,3 +56,5 @@ PERF_DETAIL_NOVICE: int
|
||||
PERF_DETAIL_WIZARD: int
|
||||
|
||||
class counter_status_error(Exception): ...
|
||||
|
||||
PDH_FMT_NOCAP100: int
|
||||
|
||||
@@ -1,10 +1,8 @@
|
||||
from _typeshed import Incomplete
|
||||
from typing import Any
|
||||
|
||||
import _win32typing
|
||||
from win32.lib.pywintypes import error as error
|
||||
|
||||
def __getattr__(name: str) -> Any: ... # incomplete
|
||||
def CreatePhonebookEntry(hWnd: int, fileName: str | None = ...) -> None: ...
|
||||
def Dial(dialExtensions, fileName: str, RasDialParams: _win32typing.RASDIALPARAMS, callback) -> tuple[Incomplete, Incomplete]: ...
|
||||
def EditPhonebookEntry(hWnd: int, fileName: str, entryName: str | None = ...) -> None: ...
|
||||
@@ -48,3 +46,9 @@ RASCS_RetryAuthentication: int
|
||||
RASCS_StartAuthentication: int
|
||||
RASCS_WaitForCallback: int
|
||||
RASCS_WaitForModemReset: int
|
||||
|
||||
def GetEapUserIdentity(*args, **kwargs): ... # incomplete
|
||||
|
||||
RASEAPF_Logon: int
|
||||
RASEAPF_NonInteractive: int
|
||||
RASEAPF_Preview: int
|
||||
|
||||
@@ -1,10 +1,8 @@
|
||||
from _typeshed import Incomplete
|
||||
from typing import Any
|
||||
|
||||
import _win32typing
|
||||
from win32.lib.pywintypes import error as error
|
||||
|
||||
def __getattr__(name: str) -> Any: ... # incomplete
|
||||
def GetThreadDesktop(ThreadId) -> _win32typing.PyHDESK: ...
|
||||
def EnumWindowStations() -> tuple[tuple[str, Incomplete], ...]: ...
|
||||
def GetUserObjectInformation(Handle: int, _type) -> None: ...
|
||||
|
||||
@@ -1,10 +1,8 @@
|
||||
from _typeshed import Incomplete
|
||||
from typing import Any
|
||||
|
||||
import _win32typing
|
||||
from win32.lib.pywintypes import error as error
|
||||
|
||||
def __getattr__(name: str) -> Any: ... # incomplete
|
||||
def NCBBuffer(size): ...
|
||||
def Netbios(ncb: _win32typing.NCB): ...
|
||||
def WNetAddConnection2(
|
||||
|
||||
@@ -1,412 +1 @@
|
||||
from win32.lib.pywintypes import error as error
|
||||
|
||||
def AbortPath(*args, **kwargs): ... # incomplete
|
||||
def AlphaBlend(*args, **kwargs): ... # incomplete
|
||||
def AngleArc(*args, **kwargs): ... # incomplete
|
||||
def AnimateWindow(*args, **kwargs): ... # incomplete
|
||||
def AppendMenu(*args, **kwargs): ... # incomplete
|
||||
def Arc(*args, **kwargs): ... # incomplete
|
||||
def ArcTo(*args, **kwargs): ... # incomplete
|
||||
def BeginPaint(*args, **kwargs): ... # incomplete
|
||||
def BeginPath(*args, **kwargs): ... # incomplete
|
||||
def BitBlt(*args, **kwargs): ... # incomplete
|
||||
def BringWindowToTop(*args, **kwargs): ... # incomplete
|
||||
|
||||
CLR_NONE: int
|
||||
|
||||
def CallWindowProc(*args, **kwargs): ... # incomplete
|
||||
def CheckMenuItem(*args, **kwargs): ... # incomplete
|
||||
def CheckMenuRadioItem(*args, **kwargs): ... # incomplete
|
||||
def ChildWindowFromPoint(*args, **kwargs): ... # incomplete
|
||||
def ChildWindowFromPointEx(*args, **kwargs): ... # incomplete
|
||||
def Chord(*args, **kwargs): ... # incomplete
|
||||
def ClientToScreen(*args, **kwargs): ... # incomplete
|
||||
def CloseFigure(*args, **kwargs): ... # incomplete
|
||||
def CloseWindow(*args, **kwargs): ... # incomplete
|
||||
def CombineRgn(*args, **kwargs): ... # incomplete
|
||||
def CombineTransform(*args, **kwargs): ... # incomplete
|
||||
def CommDlgExtendedError(*args, **kwargs): ... # incomplete
|
||||
def CopyIcon(*args, **kwargs): ... # incomplete
|
||||
def CreateAcceleratorTable(*args, **kwargs): ... # incomplete
|
||||
def CreateBitmap(*args, **kwargs): ... # incomplete
|
||||
def CreateBrushIndirect(*args, **kwargs): ... # incomplete
|
||||
def CreateCaret(*args, **kwargs): ... # incomplete
|
||||
def CreateCompatibleBitmap(*args, **kwargs): ... # incomplete
|
||||
def CreateCompatibleDC(*args, **kwargs): ... # incomplete
|
||||
def CreateDC(*args, **kwargs): ... # incomplete
|
||||
def CreateDialogIndirect(*args, **kwargs): ... # incomplete
|
||||
def CreateDialogIndirectParam(*args, **kwargs): ... # incomplete
|
||||
def CreateEllipticRgnIndirect(*args, **kwargs): ... # incomplete
|
||||
def CreateFontIndirect(*args, **kwargs): ... # incomplete
|
||||
def CreateHatchBrush(*args, **kwargs): ... # incomplete
|
||||
def CreateIconFromResource(*args, **kwargs): ... # incomplete
|
||||
def CreateIconIndirect(*args, **kwargs): ... # incomplete
|
||||
def CreateMenu(*args, **kwargs): ... # incomplete
|
||||
def CreatePatternBrush(*args, **kwargs): ... # incomplete
|
||||
def CreatePen(*args, **kwargs): ... # incomplete
|
||||
def CreatePolygonRgn(*args, **kwargs): ... # incomplete
|
||||
def CreatePopupMenu(*args, **kwargs): ... # incomplete
|
||||
def CreateRectRgnIndirect(*args, **kwargs): ... # incomplete
|
||||
def CreateRoundRectRgn(*args, **kwargs): ... # incomplete
|
||||
def CreateSolidBrush(*args, **kwargs): ... # incomplete
|
||||
def CreateWindow(*args, **kwargs): ... # incomplete
|
||||
def CreateWindowEx(*args, **kwargs): ... # incomplete
|
||||
def DefWindowProc(*args, **kwargs): ... # incomplete
|
||||
def DeleteDC(*args, **kwargs): ... # incomplete
|
||||
def DeleteMenu(*args, **kwargs): ... # incomplete
|
||||
def DeleteObject(*args, **kwargs): ... # incomplete
|
||||
def DestroyAcceleratorTable(*args, **kwargs): ... # incomplete
|
||||
def DestroyCaret(*args, **kwargs): ... # incomplete
|
||||
def DestroyIcon(*args, **kwargs): ... # incomplete
|
||||
def DestroyMenu(*args, **kwargs): ... # incomplete
|
||||
def DestroyWindow(*args, **kwargs): ... # incomplete
|
||||
def DialogBox(*args, **kwargs): ... # incomplete
|
||||
def DialogBoxIndirect(*args, **kwargs): ... # incomplete
|
||||
def DialogBoxIndirectParam(*args, **kwargs): ... # incomplete
|
||||
def DialogBoxParam(*args, **kwargs): ... # incomplete
|
||||
def DispatchMessage(*args, **kwargs): ... # incomplete
|
||||
def DragAcceptFiles(*args, **kwargs): ... # incomplete
|
||||
def DragDetect(*args, **kwargs): ... # incomplete
|
||||
def DrawAnimatedRects(*args, **kwargs): ... # incomplete
|
||||
def DrawEdge(*args, **kwargs): ... # incomplete
|
||||
def DrawFocusRect(*args, **kwargs): ... # incomplete
|
||||
def DrawIcon(*args, **kwargs): ... # incomplete
|
||||
def DrawIconEx(*args, **kwargs): ... # incomplete
|
||||
def DrawMenuBar(*args, **kwargs): ... # incomplete
|
||||
def DrawText(*args, **kwargs): ... # incomplete
|
||||
def DrawTextW(*args, **kwargs): ... # incomplete
|
||||
def Edit_GetLine(*args, **kwargs): ... # incomplete
|
||||
def Ellipse(*args, **kwargs): ... # incomplete
|
||||
def EnableMenuItem(*args, **kwargs): ... # incomplete
|
||||
def EnableWindow(*args, **kwargs): ... # incomplete
|
||||
def EndDialog(*args, **kwargs): ... # incomplete
|
||||
def EndPaint(*args, **kwargs): ... # incomplete
|
||||
def EndPath(*args, **kwargs): ... # incomplete
|
||||
def EnumChildWindows(*args, **kwargs): ... # incomplete
|
||||
def EnumFontFamilies(*args, **kwargs): ... # incomplete
|
||||
def EnumPropsEx(*args, **kwargs): ... # incomplete
|
||||
def EnumThreadWindows(*args, **kwargs): ... # incomplete
|
||||
def EnumWindows(*args, **kwargs): ... # incomplete
|
||||
def EqualRgn(*args, **kwargs): ... # incomplete
|
||||
def ExtCreatePen(*args, **kwargs): ... # incomplete
|
||||
def ExtFloodFill(*args, **kwargs): ... # incomplete
|
||||
def ExtTextOut(*args, **kwargs): ... # incomplete
|
||||
def ExtractIcon(*args, **kwargs): ... # incomplete
|
||||
def ExtractIconEx(*args, **kwargs): ... # incomplete
|
||||
def FillPath(*args, **kwargs): ... # incomplete
|
||||
def FillRect(*args, **kwargs): ... # incomplete
|
||||
def FillRgn(*args, **kwargs): ... # incomplete
|
||||
def FindWindow(*args, **kwargs): ... # incomplete
|
||||
def FindWindowEx(*args, **kwargs): ... # incomplete
|
||||
def FlashWindow(*args, **kwargs): ... # incomplete
|
||||
def FlashWindowEx(*args, **kwargs): ... # incomplete
|
||||
def FlattenPath(*args, **kwargs): ... # incomplete
|
||||
def FrameRect(*args, **kwargs): ... # incomplete
|
||||
def FrameRgn(*args, **kwargs): ... # incomplete
|
||||
def GetActiveWindow(*args, **kwargs): ... # incomplete
|
||||
def GetArcDirection(*args, **kwargs): ... # incomplete
|
||||
def GetBkColor(*args, **kwargs): ... # incomplete
|
||||
def GetBkMode(*args, **kwargs): ... # incomplete
|
||||
def GetCapture(*args, **kwargs): ... # incomplete
|
||||
def GetCaretPos(*args, **kwargs): ... # incomplete
|
||||
def GetClassLong(*args, **kwargs): ... # incomplete
|
||||
def GetClassName(*args, **kwargs): ... # incomplete
|
||||
def GetClientRect(*args, **kwargs): ... # incomplete
|
||||
def GetConsoleWindow(*args, **kwargs): ... # incomplete
|
||||
def GetCurrentObject(*args, **kwargs): ... # incomplete
|
||||
def GetCurrentPositionEx(*args, **kwargs): ... # incomplete
|
||||
def GetCursor(*args, **kwargs): ... # incomplete
|
||||
def GetCursorInfo(*args, **kwargs): ... # incomplete
|
||||
def GetCursorPos(*args, **kwargs): ... # incomplete
|
||||
def GetDC(*args, **kwargs): ... # incomplete
|
||||
def GetDesktopWindow(*args, **kwargs): ... # incomplete
|
||||
def GetDlgCtrlID(*args, **kwargs): ... # incomplete
|
||||
def GetDlgItem(*args, **kwargs): ... # incomplete
|
||||
def GetDlgItemInt(*args, **kwargs): ... # incomplete
|
||||
def GetDlgItemText(*args, **kwargs): ... # incomplete
|
||||
def GetDoubleClickTime(*args, **kwargs): ... # incomplete
|
||||
def GetFocus(*args, **kwargs): ... # incomplete
|
||||
def GetForegroundWindow(*args, **kwargs): ... # incomplete
|
||||
def GetGraphicsMode(*args, **kwargs): ... # incomplete
|
||||
def GetIconInfo(*args, **kwargs): ... # incomplete
|
||||
def GetLayeredWindowAttributes(*args, **kwargs): ... # incomplete
|
||||
def GetLayout(*args, **kwargs): ... # incomplete
|
||||
def GetMapMode(*args, **kwargs): ... # incomplete
|
||||
def GetMenu(*args, **kwargs): ... # incomplete
|
||||
def GetMenuDefaultItem(*args, **kwargs): ... # incomplete
|
||||
def GetMenuInfo(*args, **kwargs): ... # incomplete
|
||||
def GetMenuItemCount(*args, **kwargs): ... # incomplete
|
||||
def GetMenuItemID(*args, **kwargs): ... # incomplete
|
||||
def GetMenuItemInfo(*args, **kwargs): ... # incomplete
|
||||
def GetMenuItemRect(*args, **kwargs): ... # incomplete
|
||||
def GetMenuState(*args, **kwargs): ... # incomplete
|
||||
def GetMessage(*args, **kwargs): ... # incomplete
|
||||
def GetMiterLimit(*args, **kwargs): ... # incomplete
|
||||
def GetModuleHandle(*args, **kwargs): ... # incomplete
|
||||
def GetNextDlgGroupItem(*args, **kwargs): ... # incomplete
|
||||
def GetNextDlgTabItem(*args, **kwargs): ... # incomplete
|
||||
def GetObject(*args, **kwargs): ... # incomplete
|
||||
def GetObjectType(*args, **kwargs): ... # incomplete
|
||||
def GetOpenFileName(*args, **kwargs): ... # incomplete
|
||||
def GetOpenFileNameW(*args, **kwargs): ... # incomplete
|
||||
def GetParent(*args, **kwargs): ... # incomplete
|
||||
def GetPath(*args, **kwargs): ... # incomplete
|
||||
def GetPixel(*args, **kwargs): ... # incomplete
|
||||
def GetPolyFillMode(*args, **kwargs): ... # incomplete
|
||||
def GetROP2(*args, **kwargs): ... # incomplete
|
||||
def GetRgnBox(*args, **kwargs): ... # incomplete
|
||||
def GetSaveFileNameW(*args, **kwargs): ... # incomplete
|
||||
def GetScrollInfo(*args, **kwargs): ... # incomplete
|
||||
def GetStockObject(*args, **kwargs): ... # incomplete
|
||||
def GetStretchBltMode(*args, **kwargs): ... # incomplete
|
||||
def GetSubMenu(*args, **kwargs): ... # incomplete
|
||||
def GetSysColor(*args, **kwargs): ... # incomplete
|
||||
def GetSysColorBrush(*args, **kwargs): ... # incomplete
|
||||
def GetSystemMenu(*args, **kwargs): ... # incomplete
|
||||
def GetTextAlign(*args, **kwargs): ... # incomplete
|
||||
def GetTextCharacterExtra(*args, **kwargs): ... # incomplete
|
||||
def GetTextColor(*args, **kwargs): ... # incomplete
|
||||
def GetTextExtentPoint32(*args, **kwargs): ... # incomplete
|
||||
def GetTextFace(*args, **kwargs): ... # incomplete
|
||||
def GetTextMetrics(*args, **kwargs): ... # incomplete
|
||||
def GetUpdateRgn(*args, **kwargs): ... # incomplete
|
||||
def GetViewportExtEx(*args, **kwargs): ... # incomplete
|
||||
def GetViewportOrgEx(*args, **kwargs): ... # incomplete
|
||||
def GetWindow(*args, **kwargs): ... # incomplete
|
||||
def GetWindowDC(*args, **kwargs): ... # incomplete
|
||||
def GetWindowExtEx(*args, **kwargs): ... # incomplete
|
||||
def GetWindowLong(*args, **kwargs): ... # incomplete
|
||||
def GetWindowOrgEx(*args, **kwargs): ... # incomplete
|
||||
def GetWindowPlacement(*args, **kwargs): ... # incomplete
|
||||
def GetWindowRect(*args, **kwargs): ... # incomplete
|
||||
def GetWindowRgn(*args, **kwargs): ... # incomplete
|
||||
def GetWindowRgnBox(*args, **kwargs): ... # incomplete
|
||||
def GetWindowText(*args, **kwargs): ... # incomplete
|
||||
def GetWindowTextLength(*args, **kwargs): ... # incomplete
|
||||
def GetWorldTransform(*args, **kwargs): ... # incomplete
|
||||
def GradientFill(*args, **kwargs): ... # incomplete
|
||||
def HIWORD(*args, **kwargs): ... # incomplete
|
||||
def HideCaret(*args, **kwargs): ... # incomplete
|
||||
|
||||
ILC_COLOR: int
|
||||
ILC_COLOR16: int
|
||||
ILC_COLOR24: int
|
||||
ILC_COLOR32: int
|
||||
ILC_COLOR4: int
|
||||
ILC_COLOR8: int
|
||||
ILC_COLORDDB: int
|
||||
ILC_MASK: int
|
||||
ILD_BLEND: int
|
||||
ILD_BLEND25: int
|
||||
ILD_BLEND50: int
|
||||
ILD_FOCUS: int
|
||||
ILD_MASK: int
|
||||
ILD_NORMAL: int
|
||||
ILD_SELECTED: int
|
||||
ILD_TRANSPARENT: int
|
||||
IMAGE_BITMAP: int
|
||||
IMAGE_CURSOR: int
|
||||
IMAGE_ICON: int
|
||||
|
||||
def ImageList_Add(*args, **kwargs): ... # incomplete
|
||||
def ImageList_Create(*args, **kwargs): ... # incomplete
|
||||
def ImageList_Destroy(*args, **kwargs): ... # incomplete
|
||||
def ImageList_Draw(*args, **kwargs): ... # incomplete
|
||||
def ImageList_DrawEx(*args, **kwargs): ... # incomplete
|
||||
def ImageList_GetIcon(*args, **kwargs): ... # incomplete
|
||||
def ImageList_GetImageCount(*args, **kwargs): ... # incomplete
|
||||
def ImageList_LoadBitmap(*args, **kwargs): ... # incomplete
|
||||
def ImageList_LoadImage(*args, **kwargs): ... # incomplete
|
||||
def ImageList_Remove(*args, **kwargs): ... # incomplete
|
||||
def ImageList_Replace(*args, **kwargs): ... # incomplete
|
||||
def ImageList_ReplaceIcon(*args, **kwargs): ... # incomplete
|
||||
def ImageList_SetBkColor(*args, **kwargs): ... # incomplete
|
||||
def ImageList_SetOverlayImage(*args, **kwargs): ... # incomplete
|
||||
def InitCommonControls(*args, **kwargs): ... # incomplete
|
||||
def InitCommonControlsEx(*args, **kwargs): ... # incomplete
|
||||
def InsertMenu(*args, **kwargs): ... # incomplete
|
||||
def InsertMenuItem(*args, **kwargs): ... # incomplete
|
||||
def InvalidateRect(*args, **kwargs): ... # incomplete
|
||||
def InvalidateRgn(*args, **kwargs): ... # incomplete
|
||||
def InvertRect(*args, **kwargs): ... # incomplete
|
||||
def InvertRgn(*args, **kwargs): ... # incomplete
|
||||
def IsChild(*args, **kwargs): ... # incomplete
|
||||
def IsIconic(*args, **kwargs): ... # incomplete
|
||||
def IsWindow(*args, **kwargs): ... # incomplete
|
||||
def IsWindowEnabled(*args, **kwargs): ... # incomplete
|
||||
def IsWindowVisible(*args, **kwargs): ... # incomplete
|
||||
def LOGFONT(*args, **kwargs): ... # incomplete
|
||||
def LOWORD(*args, **kwargs): ... # incomplete
|
||||
|
||||
LR_CREATEDIBSECTION: int
|
||||
LR_DEFAULTCOLOR: int
|
||||
LR_DEFAULTSIZE: int
|
||||
LR_LOADFROMFILE: int
|
||||
LR_LOADMAP3DCOLORS: int
|
||||
LR_LOADTRANSPARENT: int
|
||||
LR_MONOCHROME: int
|
||||
LR_SHARED: int
|
||||
LR_VGACOLOR: int
|
||||
|
||||
def LineTo(*args, **kwargs): ... # incomplete
|
||||
def ListView_SortItems(*args, **kwargs): ... # incomplete
|
||||
def ListView_SortItemsEx(*args, **kwargs): ... # incomplete
|
||||
def LoadCursor(*args, **kwargs): ... # incomplete
|
||||
def LoadIcon(*args, **kwargs): ... # incomplete
|
||||
def LoadImage(*args, **kwargs): ... # incomplete
|
||||
def LoadMenu(*args, **kwargs): ... # incomplete
|
||||
def MaskBlt(*args, **kwargs): ... # incomplete
|
||||
def MessageBeep(*args, **kwargs): ... # incomplete
|
||||
def MessageBox(*args, **kwargs): ... # incomplete
|
||||
def ModifyMenu(*args, **kwargs): ... # incomplete
|
||||
def ModifyWorldTransform(*args, **kwargs): ... # incomplete
|
||||
def MoveToEx(*args, **kwargs): ... # incomplete
|
||||
def MoveWindow(*args, **kwargs): ... # incomplete
|
||||
|
||||
NIF_ICON: int
|
||||
NIF_INFO: int
|
||||
NIF_MESSAGE: int
|
||||
NIF_STATE: int
|
||||
NIF_TIP: int
|
||||
NIIF_ERROR: int
|
||||
NIIF_ICON_MASK: int
|
||||
NIIF_INFO: int
|
||||
NIIF_NONE: int
|
||||
NIIF_NOSOUND: int
|
||||
NIIF_WARNING: int
|
||||
NIM_ADD: int
|
||||
NIM_DELETE: int
|
||||
NIM_MODIFY: int
|
||||
NIM_SETVERSION: int
|
||||
|
||||
def OffsetRgn(*args, **kwargs): ... # incomplete
|
||||
def PaintDesktop(*args, **kwargs): ... # incomplete
|
||||
def PaintRgn(*args, **kwargs): ... # incomplete
|
||||
def PatBlt(*args, **kwargs): ... # incomplete
|
||||
def PathToRegion(*args, **kwargs): ... # incomplete
|
||||
def PeekMessage(*args, **kwargs): ... # incomplete
|
||||
def Pie(*args, **kwargs): ... # incomplete
|
||||
def PlgBlt(*args, **kwargs): ... # incomplete
|
||||
def PolyBezier(*args, **kwargs): ... # incomplete
|
||||
def PolyBezierTo(*args, **kwargs): ... # incomplete
|
||||
def Polygon(*args, **kwargs): ... # incomplete
|
||||
def Polyline(*args, **kwargs): ... # incomplete
|
||||
def PolylineTo(*args, **kwargs): ... # incomplete
|
||||
def PostMessage(*args, **kwargs): ... # incomplete
|
||||
def PostQuitMessage(*args, **kwargs): ... # incomplete
|
||||
def PostThreadMessage(*args, **kwargs): ... # incomplete
|
||||
def PtInRect(*args, **kwargs): ... # incomplete
|
||||
def PtInRegion(*args, **kwargs): ... # incomplete
|
||||
def PumpMessages(*args, **kwargs): ... # incomplete
|
||||
def PumpWaitingMessages(*args, **kwargs): ... # incomplete
|
||||
def PyGetArraySignedLong(*args, **kwargs): ... # incomplete
|
||||
def PyGetBufferAddressAndLen(*args, **kwargs): ... # incomplete
|
||||
def PyGetMemory(*args, **kwargs): ... # incomplete
|
||||
def PyGetString(*args, **kwargs): ... # incomplete
|
||||
def PyMakeBuffer(*args, **kwargs): ... # incomplete
|
||||
def PySetMemory(*args, **kwargs): ... # incomplete
|
||||
def PySetString(*args, **kwargs): ... # incomplete
|
||||
def RectInRegion(*args, **kwargs): ... # incomplete
|
||||
def Rectangle(*args, **kwargs): ... # incomplete
|
||||
def RedrawWindow(*args, **kwargs): ... # incomplete
|
||||
def RegisterClass(*args, **kwargs): ... # incomplete
|
||||
def RegisterDeviceNotification(*args, **kwargs): ... # incomplete
|
||||
def RegisterHotKey(*args, **kwargs): ... # incomplete
|
||||
def RegisterWindowMessage(*args, **kwargs): ... # incomplete
|
||||
def ReleaseCapture(*args, **kwargs): ... # incomplete
|
||||
def ReleaseDC(*args, **kwargs): ... # incomplete
|
||||
def RemoveMenu(*args, **kwargs): ... # incomplete
|
||||
def ReplyMessage(*args, **kwargs): ... # incomplete
|
||||
def RestoreDC(*args, **kwargs): ... # incomplete
|
||||
def RoundRect(*args, **kwargs): ... # incomplete
|
||||
def SaveDC(*args, **kwargs): ... # incomplete
|
||||
def ScreenToClient(*args, **kwargs): ... # incomplete
|
||||
def ScrollWindowEx(*args, **kwargs): ... # incomplete
|
||||
def SelectObject(*args, **kwargs): ... # incomplete
|
||||
def SendMessage(*args, **kwargs): ... # incomplete
|
||||
def SendMessageTimeout(*args, **kwargs): ... # incomplete
|
||||
def SetActiveWindow(*args, **kwargs): ... # incomplete
|
||||
def SetArcDirection(*args, **kwargs): ... # incomplete
|
||||
def SetBkColor(*args, **kwargs): ... # incomplete
|
||||
def SetBkMode(*args, **kwargs): ... # incomplete
|
||||
def SetCapture(*args, **kwargs): ... # incomplete
|
||||
def SetCaretPos(*args, **kwargs): ... # incomplete
|
||||
def SetCursor(*args, **kwargs): ... # incomplete
|
||||
def SetDlgItemInt(*args, **kwargs): ... # incomplete
|
||||
def SetDlgItemText(*args, **kwargs): ... # incomplete
|
||||
def SetDoubleClickTime(*args, **kwargs): ... # incomplete
|
||||
def SetFocus(*args, **kwargs): ... # incomplete
|
||||
def SetForegroundWindow(*args, **kwargs): ... # incomplete
|
||||
def SetGraphicsMode(*args, **kwargs): ... # incomplete
|
||||
def SetLayeredWindowAttributes(*args, **kwargs): ... # incomplete
|
||||
def SetLayout(*args, **kwargs): ... # incomplete
|
||||
def SetMapMode(*args, **kwargs): ... # incomplete
|
||||
def SetMenu(*args, **kwargs): ... # incomplete
|
||||
def SetMenuDefaultItem(*args, **kwargs): ... # incomplete
|
||||
def SetMenuInfo(*args, **kwargs): ... # incomplete
|
||||
def SetMenuItemBitmaps(*args, **kwargs): ... # incomplete
|
||||
def SetMenuItemInfo(*args, **kwargs): ... # incomplete
|
||||
def SetMiterLimit(*args, **kwargs): ... # incomplete
|
||||
def SetParent(*args, **kwargs): ... # incomplete
|
||||
def SetPixel(*args, **kwargs): ... # incomplete
|
||||
def SetPixelV(*args, **kwargs): ... # incomplete
|
||||
def SetPolyFillMode(*args, **kwargs): ... # incomplete
|
||||
def SetROP2(*args, **kwargs): ... # incomplete
|
||||
def SetRectRgn(*args, **kwargs): ... # incomplete
|
||||
def SetScrollInfo(*args, **kwargs): ... # incomplete
|
||||
def SetStretchBltMode(*args, **kwargs): ... # incomplete
|
||||
def SetTextAlign(*args, **kwargs): ... # incomplete
|
||||
def SetTextCharacterExtra(*args, **kwargs): ... # incomplete
|
||||
def SetTextColor(*args, **kwargs): ... # incomplete
|
||||
def SetViewportExtEx(*args, **kwargs): ... # incomplete
|
||||
def SetViewportOrgEx(*args, **kwargs): ... # incomplete
|
||||
def SetWindowExtEx(*args, **kwargs): ... # incomplete
|
||||
def SetWindowLong(*args, **kwargs): ... # incomplete
|
||||
def SetWindowOrgEx(*args, **kwargs): ... # incomplete
|
||||
def SetWindowPlacement(*args, **kwargs): ... # incomplete
|
||||
def SetWindowPos(*args, **kwargs): ... # incomplete
|
||||
def SetWindowRgn(*args, **kwargs): ... # incomplete
|
||||
def SetWindowText(*args, **kwargs): ... # incomplete
|
||||
def SetWorldTransform(*args, **kwargs): ... # incomplete
|
||||
def Shell_NotifyIcon(*args, **kwargs): ... # incomplete
|
||||
def ShowCaret(*args, **kwargs): ... # incomplete
|
||||
def ShowWindow(*args, **kwargs): ... # incomplete
|
||||
def StretchBlt(*args, **kwargs): ... # incomplete
|
||||
def StrokeAndFillPath(*args, **kwargs): ... # incomplete
|
||||
def StrokePath(*args, **kwargs): ... # incomplete
|
||||
def SystemParametersInfo(*args, **kwargs): ... # incomplete
|
||||
|
||||
TPM_BOTTOMALIGN: int
|
||||
TPM_CENTERALIGN: int
|
||||
TPM_LEFTALIGN: int
|
||||
TPM_LEFTBUTTON: int
|
||||
TPM_NONOTIFY: int
|
||||
TPM_RETURNCMD: int
|
||||
TPM_RIGHTALIGN: int
|
||||
TPM_RIGHTBUTTON: int
|
||||
TPM_TOPALIGN: int
|
||||
TPM_VCENTERALIGN: int
|
||||
|
||||
def TrackPopupMenu(*args, **kwargs): ... # incomplete
|
||||
def TranslateAccelerator(*args, **kwargs): ... # incomplete
|
||||
def TranslateMessage(*args, **kwargs): ... # incomplete
|
||||
def TransparentBlt(*args, **kwargs): ... # incomplete
|
||||
|
||||
UNICODE: bool
|
||||
|
||||
def UnregisterClass(*args, **kwargs): ... # incomplete
|
||||
def UnregisterDeviceNotification(*args, **kwargs): ... # incomplete
|
||||
def UpdateLayeredWindow(*args, **kwargs): ... # incomplete
|
||||
def UpdateWindow(*args, **kwargs): ... # incomplete
|
||||
def ValidateRect(*args, **kwargs): ... # incomplete
|
||||
def ValidateRgn(*args, **kwargs): ... # incomplete
|
||||
def WNDCLASS(*args, **kwargs): ... # incomplete
|
||||
def WaitMessage(*args, **kwargs): ... # incomplete
|
||||
def WidenPath(*args, **kwargs): ... # incomplete
|
||||
def WindowFromDC(*args, **kwargs): ... # incomplete
|
||||
def WindowFromPoint(*args, **kwargs): ... # incomplete
|
||||
|
||||
dllhandle: int
|
||||
|
||||
def lpstr(*args, **kwargs): ... # incomplete
|
||||
def set_logger(*args, **kwargs): ... # incomplete
|
||||
from win32.win32gui import *
|
||||
|
||||
1
stubs/pywin32/win32api.pyi
Normal file
1
stubs/pywin32/win32api.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32.win32api import *
|
||||
1
stubs/pywin32/win32clipboard.pyi
Normal file
1
stubs/pywin32/win32clipboard.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32.win32clipboard import *
|
||||
9
stubs/pywin32/win32com/__init__.pyi
Normal file
9
stubs/pywin32/win32com/__init__.pyi
Normal file
@@ -0,0 +1,9 @@
|
||||
from _typeshed import Incomplete
|
||||
|
||||
__gen_path__: str
|
||||
__build_path__: Incomplete
|
||||
|
||||
def SetupEnvironment() -> None: ...
|
||||
def __PackageSupportBuildPath__(package_path) -> None: ...
|
||||
|
||||
gen_py: Incomplete
|
||||
1
stubs/pywin32/win32com/adsi/__init__.pyi
Normal file
1
stubs/pywin32/win32com/adsi/__init__.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32comext.adsi import *
|
||||
1
stubs/pywin32/win32com/adsi/adsi.pyi
Normal file
1
stubs/pywin32/win32com/adsi/adsi.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32comext.adsi.adsi import *
|
||||
1
stubs/pywin32/win32com/adsi/adsicon.pyi
Normal file
1
stubs/pywin32/win32com/adsi/adsicon.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32comext.adsi.adsicon import *
|
||||
1
stubs/pywin32/win32com/authorization/__init__.pyi
Normal file
1
stubs/pywin32/win32com/authorization/__init__.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32comext.authorization import *
|
||||
1
stubs/pywin32/win32com/authorization/authorization.pyi
Normal file
1
stubs/pywin32/win32com/authorization/authorization.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32comext.authorization.authorization import *
|
||||
1
stubs/pywin32/win32com/axcontrol/__init__.pyi
Normal file
1
stubs/pywin32/win32com/axcontrol/__init__.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32comext.axcontrol import *
|
||||
1
stubs/pywin32/win32com/axcontrol/axcontrol.pyi
Normal file
1
stubs/pywin32/win32com/axcontrol/axcontrol.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32comext.axcontrol.axcontrol import *
|
||||
1
stubs/pywin32/win32com/axdebug/__init__.pyi
Normal file
1
stubs/pywin32/win32com/axdebug/__init__.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32comext.axdebug import *
|
||||
1
stubs/pywin32/win32com/axdebug/adb.pyi
Normal file
1
stubs/pywin32/win32com/axdebug/adb.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32comext.axdebug.adb import *
|
||||
1
stubs/pywin32/win32com/axdebug/axdebug.pyi
Normal file
1
stubs/pywin32/win32com/axdebug/axdebug.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32comext.axdebug.axdebug import *
|
||||
1
stubs/pywin32/win32com/axdebug/codecontainer.pyi
Normal file
1
stubs/pywin32/win32com/axdebug/codecontainer.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32comext.axdebug.codecontainer import *
|
||||
1
stubs/pywin32/win32com/axdebug/contexts.pyi
Normal file
1
stubs/pywin32/win32com/axdebug/contexts.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32comext.axdebug.contexts import *
|
||||
1
stubs/pywin32/win32com/axdebug/debugger.pyi
Normal file
1
stubs/pywin32/win32com/axdebug/debugger.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32comext.axdebug.debugger import *
|
||||
1
stubs/pywin32/win32com/axdebug/documents.pyi
Normal file
1
stubs/pywin32/win32com/axdebug/documents.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32comext.axdebug.documents import *
|
||||
1
stubs/pywin32/win32com/axdebug/expressions.pyi
Normal file
1
stubs/pywin32/win32com/axdebug/expressions.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32comext.axdebug.expressions import *
|
||||
1
stubs/pywin32/win32com/axdebug/gateways.pyi
Normal file
1
stubs/pywin32/win32com/axdebug/gateways.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32comext.axdebug.gateways import *
|
||||
1
stubs/pywin32/win32com/axdebug/stackframe.pyi
Normal file
1
stubs/pywin32/win32com/axdebug/stackframe.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32comext.axdebug.stackframe import *
|
||||
1
stubs/pywin32/win32com/axdebug/util.pyi
Normal file
1
stubs/pywin32/win32com/axdebug/util.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32comext.axdebug.util import *
|
||||
1
stubs/pywin32/win32com/axscript/__init__.pyi
Normal file
1
stubs/pywin32/win32com/axscript/__init__.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32comext.axscript import *
|
||||
1
stubs/pywin32/win32com/axscript/asputil.pyi
Normal file
1
stubs/pywin32/win32com/axscript/asputil.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32comext.axscript.asputil import *
|
||||
1
stubs/pywin32/win32com/axscript/axscript.pyi
Normal file
1
stubs/pywin32/win32com/axscript/axscript.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32comext.axscript.axscript import *
|
||||
1
stubs/pywin32/win32com/axscript/client/__init__.pyi
Normal file
1
stubs/pywin32/win32com/axscript/client/__init__.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32comext.axscript.client import *
|
||||
1
stubs/pywin32/win32com/axscript/client/error.pyi
Normal file
1
stubs/pywin32/win32com/axscript/client/error.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32comext.axscript.client.error import *
|
||||
1
stubs/pywin32/win32com/axscript/server/__init__.pyi
Normal file
1
stubs/pywin32/win32com/axscript/server/__init__.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32comext.axscript.server import *
|
||||
1
stubs/pywin32/win32com/axscript/server/axsite.pyi
Normal file
1
stubs/pywin32/win32com/axscript/server/axsite.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32comext.axscript.server.axsite import *
|
||||
1
stubs/pywin32/win32com/axscript/server/error.pyi
Normal file
1
stubs/pywin32/win32com/axscript/server/error.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32comext.axscript.server.error import *
|
||||
1
stubs/pywin32/win32com/bits/__init__.pyi
Normal file
1
stubs/pywin32/win32com/bits/__init__.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32comext.bits import *
|
||||
1
stubs/pywin32/win32com/bits/bits.pyi
Normal file
1
stubs/pywin32/win32com/bits/bits.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32comext.bits.bits import *
|
||||
70
stubs/pywin32/win32com/client/__init__.pyi
Normal file
70
stubs/pywin32/win32com/client/__init__.pyi
Normal file
@@ -0,0 +1,70 @@
|
||||
from _typeshed import Incomplete
|
||||
|
||||
from win32com.client import dynamic as dynamic
|
||||
|
||||
def GetObject(Pathname: Incomplete | None = ..., Class: Incomplete | None = ..., clsctx: Incomplete | None = ...): ...
|
||||
def GetActiveObject(Class, clsctx=...): ...
|
||||
def Moniker(Pathname, clsctx=...): ...
|
||||
def Dispatch(
|
||||
dispatch,
|
||||
userName: Incomplete | None = ...,
|
||||
resultCLSID: Incomplete | None = ...,
|
||||
typeinfo: Incomplete | None = ...,
|
||||
UnicodeToString: Incomplete | None = ...,
|
||||
clsctx=...,
|
||||
): ...
|
||||
def DispatchEx(
|
||||
clsid,
|
||||
machine: Incomplete | None = ...,
|
||||
userName: Incomplete | None = ...,
|
||||
resultCLSID: Incomplete | None = ...,
|
||||
typeinfo: Incomplete | None = ...,
|
||||
UnicodeToString: Incomplete | None = ...,
|
||||
clsctx: Incomplete | None = ...,
|
||||
): ...
|
||||
|
||||
class CDispatch(dynamic.CDispatch):
|
||||
def __dir__(self): ...
|
||||
|
||||
def CastTo(ob, target, typelib: Incomplete | None = ...): ...
|
||||
|
||||
class Constants:
|
||||
__dicts__: Incomplete
|
||||
def __getattr__(self, a): ...
|
||||
|
||||
constants: Incomplete
|
||||
|
||||
class EventsProxy:
|
||||
def __init__(self, ob) -> None: ...
|
||||
def __del__(self) -> None: ...
|
||||
def __getattr__(self, attr): ...
|
||||
def __setattr__(self, attr, val) -> None: ...
|
||||
|
||||
def DispatchWithEvents(clsid, user_event_class): ...
|
||||
def WithEvents(disp, user_event_class): ...
|
||||
def getevents(clsid): ...
|
||||
def Record(name, object): ...
|
||||
|
||||
class DispatchBaseClass:
|
||||
def __init__(self, oobj: Incomplete | None = ...) -> None: ...
|
||||
def __dir__(self): ...
|
||||
def __eq__(self, other): ...
|
||||
def __ne__(self, other): ...
|
||||
def __getattr__(self, attr): ...
|
||||
def __setattr__(self, attr, value) -> None: ...
|
||||
|
||||
class CoClassBaseClass:
|
||||
def __init__(self, oobj: Incomplete | None = ...) -> None: ...
|
||||
def __getattr__(self, attr): ...
|
||||
def __setattr__(self, attr, value) -> None: ...
|
||||
def __maybe__call__(self, *args, **kwargs): ...
|
||||
def __maybe__str__(self, *args): ...
|
||||
def __maybe__int__(self, *args): ...
|
||||
def __maybe__iter__(self): ...
|
||||
def __maybe__len__(self): ...
|
||||
def __maybe__nonzero__(self): ...
|
||||
|
||||
class VARIANT:
|
||||
varianttype: Incomplete
|
||||
def __init__(self, vt, value) -> None: ...
|
||||
value: Incomplete
|
||||
26
stubs/pywin32/win32com/client/dynamic.pyi
Normal file
26
stubs/pywin32/win32com/client/dynamic.pyi
Normal file
@@ -0,0 +1,26 @@
|
||||
from _typeshed import Incomplete
|
||||
|
||||
# Necessary for mypy to not throw AssertionError with win32com.client
|
||||
class CDispatch:
|
||||
def __init__(
|
||||
self,
|
||||
IDispatch,
|
||||
olerepr,
|
||||
userName: Incomplete | None = ...,
|
||||
UnicodeToString: Incomplete | None = ...,
|
||||
lazydata: Incomplete | None = ...,
|
||||
) -> None: ...
|
||||
def __call__(self, *args): ...
|
||||
def __bool__(self): ...
|
||||
def __dir__(self): ...
|
||||
def __eq__(self, other): ...
|
||||
def __ne__(self, other): ...
|
||||
def __int__(self): ...
|
||||
def __len__(self): ...
|
||||
def __getitem__(self, index): ...
|
||||
def __setitem__(self, index, *args): ...
|
||||
def __LazyMap__(self, attr): ...
|
||||
def __AttrToID__(self, attr): ...
|
||||
ob: Incomplete
|
||||
def __getattr__(self, attr): ...
|
||||
def __setattr__(self, attr, value) -> None: ...
|
||||
1
stubs/pywin32/win32com/directsound/__init__.pyi
Normal file
1
stubs/pywin32/win32com/directsound/__init__.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32comext.directsound import *
|
||||
1
stubs/pywin32/win32com/directsound/directsound.pyi
Normal file
1
stubs/pywin32/win32com/directsound/directsound.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32comext.directsound.directsound import *
|
||||
1
stubs/pywin32/win32com/ifilter/__init__.pyi
Normal file
1
stubs/pywin32/win32com/ifilter/__init__.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32comext.ifilter import *
|
||||
1
stubs/pywin32/win32com/ifilter/ifilter.pyi
Normal file
1
stubs/pywin32/win32com/ifilter/ifilter.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32comext.ifilter.ifilter import *
|
||||
1
stubs/pywin32/win32com/ifilter/ifiltercon.pyi
Normal file
1
stubs/pywin32/win32com/ifilter/ifiltercon.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32comext.ifilter.ifiltercon import *
|
||||
1
stubs/pywin32/win32com/internet/__init__.pyi
Normal file
1
stubs/pywin32/win32com/internet/__init__.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32comext.internet import *
|
||||
1
stubs/pywin32/win32com/internet/inetcon.pyi
Normal file
1
stubs/pywin32/win32com/internet/inetcon.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32comext.internet.inetcon import *
|
||||
1
stubs/pywin32/win32com/internet/internet.pyi
Normal file
1
stubs/pywin32/win32com/internet/internet.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32comext.internet.internet import *
|
||||
1
stubs/pywin32/win32com/mapi/__init__.pyi
Normal file
1
stubs/pywin32/win32com/mapi/__init__.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32comext.mapi import *
|
||||
1
stubs/pywin32/win32com/mapi/_exchdapi.pyi
Normal file
1
stubs/pywin32/win32com/mapi/_exchdapi.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32comext.mapi._exchdapi import *
|
||||
1
stubs/pywin32/win32com/mapi/emsabtags.pyi
Normal file
1
stubs/pywin32/win32com/mapi/emsabtags.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32comext.mapi.emsabtags import *
|
||||
1
stubs/pywin32/win32com/mapi/exchange.pyi
Normal file
1
stubs/pywin32/win32com/mapi/exchange.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32comext.mapi.exchange import *
|
||||
1
stubs/pywin32/win32com/mapi/mapi.pyi
Normal file
1
stubs/pywin32/win32com/mapi/mapi.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32comext.mapi.mapi import *
|
||||
1
stubs/pywin32/win32com/mapi/mapitags.pyi
Normal file
1
stubs/pywin32/win32com/mapi/mapitags.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32comext.mapi.mapitags import *
|
||||
1
stubs/pywin32/win32com/mapi/mapiutil.pyi
Normal file
1
stubs/pywin32/win32com/mapi/mapiutil.pyi
Normal file
@@ -0,0 +1 @@
|
||||
from win32comext.mapi.mapiutil import *
|
||||
54
stubs/pywin32/win32com/olectl.pyi
Normal file
54
stubs/pywin32/win32com/olectl.pyi
Normal file
@@ -0,0 +1,54 @@
|
||||
FACILITY_CONTROL: int
|
||||
|
||||
def MAKE_SCODE(sev: int, fac: int, code: int) -> int: ...
|
||||
def STD_CTL_SCODE(n: int) -> int: ...
|
||||
|
||||
CTL_E_ILLEGALFUNCTIONCALL: int
|
||||
CTL_E_OVERFLOW: int
|
||||
CTL_E_OUTOFMEMORY: int
|
||||
CTL_E_DIVISIONBYZERO: int
|
||||
CTL_E_OUTOFSTRINGSPACE: int
|
||||
CTL_E_OUTOFSTACKSPACE: int
|
||||
CTL_E_BADFILENAMEORNUMBER: int
|
||||
CTL_E_FILENOTFOUND: int
|
||||
CTL_E_BADFILEMODE: int
|
||||
CTL_E_FILEALREADYOPEN: int
|
||||
CTL_E_DEVICEIOERROR: int
|
||||
CTL_E_FILEALREADYEXISTS: int
|
||||
CTL_E_BADRECORDLENGTH: int
|
||||
CTL_E_DISKFULL: int
|
||||
CTL_E_BADRECORDNUMBER: int
|
||||
CTL_E_BADFILENAME: int
|
||||
CTL_E_TOOMANYFILES: int
|
||||
CTL_E_DEVICEUNAVAILABLE: int
|
||||
CTL_E_PERMISSIONDENIED: int
|
||||
CTL_E_DISKNOTREADY: int
|
||||
CTL_E_PATHFILEACCESSERROR: int
|
||||
CTL_E_PATHNOTFOUND: int
|
||||
CTL_E_INVALIDPATTERNSTRING: int
|
||||
CTL_E_INVALIDUSEOFNULL: int
|
||||
CTL_E_INVALIDFILEFORMAT: int
|
||||
CTL_E_INVALIDPROPERTYVALUE: int
|
||||
CTL_E_INVALIDPROPERTYARRAYINDEX: int
|
||||
CTL_E_SETNOTSUPPORTEDATRUNTIME: int
|
||||
CTL_E_SETNOTSUPPORTED: int
|
||||
CTL_E_NEEDPROPERTYARRAYINDEX: int
|
||||
CTL_E_SETNOTPERMITTED: int
|
||||
CTL_E_GETNOTSUPPORTEDATRUNTIME: int
|
||||
CTL_E_GETNOTSUPPORTED: int
|
||||
CTL_E_PROPERTYNOTFOUND: int
|
||||
CTL_E_INVALIDCLIPBOARDFORMAT: int
|
||||
CTL_E_INVALIDPICTURE: int
|
||||
CTL_E_PRINTERERROR: int
|
||||
CTL_E_CANTSAVEFILETOTEMP: int
|
||||
CTL_E_SEARCHTEXTNOTFOUND: int
|
||||
CTL_E_REPLACEMENTSTOOLONG: int
|
||||
CONNECT_E_FIRST: int
|
||||
CONNECT_E_LAST: int
|
||||
CONNECT_S_FIRST: int
|
||||
CONNECT_S_LAST: int
|
||||
CONNECT_E_NOCONNECTION: int
|
||||
CONNECT_E_ADVISELIMIT: int
|
||||
CONNECT_E_CANNOTCONNECT: int
|
||||
CONNECT_E_OVERRIDDEN: int
|
||||
CLASS_E_NOTLICENSED: int
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user