Windows API functions implemented as ctypes functions and classes as
found in jaraco.windows (2.10).
If you encounter issues with this module, please consider reporting
the issues in jaraco.windows and asking the author to port the fixes back
here.
|
format_system_message(errno)
Call FormatMessage with a system error number to retrieve the
descriptive error message. |
source code
|
|
|
|
|
GetTokenInformation(token,
information_class)
Given a token, get the token information for it. |
source code
|
|
|
|
|
get_current_user()
Return a TOKEN_USER for the owner of this process. |
source code
|
|
|
get_security_attributes_for_user(user=None)
Return a SECURITY_ATTRIBUTES structure with the SID set to the
specified user (uses current user if none is specified). |
source code
|
|