如何使用ctypes访问system.dll类?
from ctypes import *
lib_sys = CDLL(r"C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.1\System.dll")
_impersonatedUser = lib_sys.security.Principal.WindowsImpersonationContext # <-- exception: "function 'security' not found."
这会在尝试使用该类时给出错误消息function 'security' not found.
。
我正在使用Python 2.7(64位)。
需要本机python解决方案。