Python 调用DLL
时间: 2023-04-04 19:02:45 浏览: 109
Python使用ctypes库调用外部DLL[参照].pdf
可以使用 ctypes 模块来调用 DLL 文件中的函数。具体步骤是先使用 ctypes.cdll.LoadLibrary() 函数加载 DLL 文件,然后使用该库中的函数。例如:
```
import ctypes
# 加载 DLL 文件
mydll = ctypes.cdll.LoadLibrary("mydll.dll")
# 调用 DLL 中的函数
result = mydll.myfunction(arg1, arg2)
```
其中,myfunction 是 DLL 文件中的函数名,arg1 和 arg2 是该函数的参数。调用成功后,result 将会是该函数的返回值。
阅读全文