mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-05-09 06:46:18 +08:00
[pywin32] Update LookupAccountSid to accept None for systemName (#14484)
This commit is contained in:
@@ -41,7 +41,7 @@ def LogonUserEx(
|
||||
Username: str, Domain: str, Password: str, LogonType, LogonProvider
|
||||
) -> tuple[int, _win32typing.PySID, Incomplete, Incomplete]: ...
|
||||
def LookupAccountName(systemName: str | None, accountName: str, /) -> tuple[_win32typing.PySID, str, int]: ...
|
||||
def LookupAccountSid(systemName: str, sid: _win32typing.PySID, /) -> tuple[str, str, Incomplete]: ...
|
||||
def LookupAccountSid(systemName: str | None, sid: _win32typing.PySID, /) -> tuple[str, str, Incomplete]: ...
|
||||
def GetBinarySid(SID: str, /) -> _win32typing.PySID: ...
|
||||
def SetSecurityInfo(
|
||||
handle: int,
|
||||
|
||||
Reference in New Issue
Block a user