python ctypes访问system.dll类

时间:2019-06-18 19:22:05

标签: python ctypes

如何使用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解决方案。

0 个答案:

没有答案