mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-14 02:26:53 -07:00
Update vendored windows libs
This commit is contained in:
parent
f61c211655
commit
b1cefa94e5
226 changed files with 33472 additions and 11882 deletions
|
@ -4,18 +4,18 @@ from .api import library
|
|||
|
||||
|
||||
def find_lib(lib):
|
||||
r"""
|
||||
Find the DLL for a given library.
|
||||
r"""
|
||||
Find the DLL for a given library.
|
||||
|
||||
Accepts a string or loaded module
|
||||
Accepts a string or loaded module
|
||||
|
||||
>>> print(find_lib('kernel32').lower())
|
||||
c:\windows\system32\kernel32.dll
|
||||
"""
|
||||
if isinstance(lib, str):
|
||||
lib = getattr(ctypes.windll, lib)
|
||||
>>> print(find_lib('kernel32').lower())
|
||||
c:\windows\system32\kernel32.dll
|
||||
"""
|
||||
if isinstance(lib, str):
|
||||
lib = getattr(ctypes.windll, lib)
|
||||
|
||||
size = 1024
|
||||
result = ctypes.create_unicode_buffer(size)
|
||||
library.GetModuleFileName(lib._handle, result, size)
|
||||
return result.value
|
||||
size = 1024
|
||||
result = ctypes.create_unicode_buffer(size)
|
||||
library.GetModuleFileName(lib._handle, result, size)
|
||||
return result.value
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue