mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-21 05:43:16 -07:00
Move Windows libs to libs/windows
This commit is contained in:
parent
3975aaceb2
commit
3a692c94a5
684 changed files with 4 additions and 1 deletions
16
libs/win/jaraco/windows/user.py
Normal file
16
libs/win/jaraco/windows/user.py
Normal file
|
@ -0,0 +1,16 @@
|
|||
import ctypes
|
||||
from .api import errors
|
||||
from .api.user import GetUserName
|
||||
from .error import WindowsError, handle_nonzero_success
|
||||
|
||||
|
||||
def get_user_name():
|
||||
size = ctypes.wintypes.DWORD()
|
||||
try:
|
||||
handle_nonzero_success(GetUserName(None, size))
|
||||
except WindowsError as e:
|
||||
if e.code != errors.ERROR_INSUFFICIENT_BUFFER:
|
||||
raise
|
||||
buffer = ctypes.create_unicode_buffer(size.value)
|
||||
handle_nonzero_success(GetUserName(buffer, size))
|
||||
return buffer.value
|
Loading…
Add table
Add a link
Reference in a new issue