mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-07-09 09:59:16 +08:00
[pywin32] Add parameters for incomplete functions (#15512)
This commit is contained in:
@@ -16,11 +16,11 @@ CBF_SKIP_CONNECT_CONFIRMS: int
|
||||
CBF_SKIP_DISCONNECTS: int
|
||||
CBF_SKIP_REGISTRATIONS: int
|
||||
|
||||
def CreateConversation(*args): ... # incomplete
|
||||
def CreateServer(*args): ... # incomplete
|
||||
def CreateServerSystemTopic(*args): ... # incomplete
|
||||
def CreateStringItem(*args): ... # incomplete
|
||||
def CreateTopic(*args): ... # incomplete
|
||||
def CreateConversation(Server, /): ...
|
||||
def CreateServer(): ...
|
||||
def CreateServerSystemTopic(): ...
|
||||
def CreateStringItem(name, /): ...
|
||||
def CreateTopic(name, /): ...
|
||||
|
||||
MF_CALLBACKS: int
|
||||
MF_CONV: int
|
||||
|
||||
@@ -145,13 +145,13 @@ def TranslateMessage(): ...
|
||||
def TranslateVirtualKey(vk, /) -> str: ...
|
||||
def WinHelp(arg, data: str, /) -> None: ...
|
||||
def WriteProfileVal(section: str, entry: str, value: str, /) -> None: ...
|
||||
def AddToRecentFileList(*args): ... # incomplete
|
||||
def CreateImageList(*args): ... # incomplete
|
||||
def CreateListCtrl(*args): ... # incomplete
|
||||
def CreateListView(*args): ... # incomplete
|
||||
def CreateRectRgn(*args): ... # incomplete
|
||||
def GetRecentFileList(*args): ... # incomplete
|
||||
def OutputDebug(*args): ... # incomplete
|
||||
def AddToRecentFileList(fname, /): ...
|
||||
def CreateImageList(cx, cy, mask, initial, grow, /): ...
|
||||
def CreateListCtrl(): ...
|
||||
def CreateListView(doc, /): ...
|
||||
def CreateRectRgn(rect: tuple[Incomplete, Incomplete, Incomplete, Incomplete], /): ...
|
||||
def GetRecentFileList() -> list[Incomplete]: ...
|
||||
def OutputDebug(msg: str, /) -> None: ...
|
||||
|
||||
AFX_IDW_PANE_FIRST: int
|
||||
AFX_IDW_PANE_LAST: int
|
||||
|
||||
@@ -12,7 +12,7 @@ def OleGetUserCtrl(): ...
|
||||
def OleSetUserCtrl(bUserCtrl, /): ...
|
||||
def SetMessagePendingDelay(delay, /) -> None: ...
|
||||
def EnableNotRespondingDialog(enabled, /) -> None: ...
|
||||
def EnableBusyDialog(*args): ... # incomplete
|
||||
def EnableBusyDialog(enabled, /) -> None: ...
|
||||
|
||||
COleClientItem_activeState: int
|
||||
COleClientItem_activeUIState: int
|
||||
|
||||
Reference in New Issue
Block a user