使用 ctypes 时遇到一些问题
我有一个带有以下界面的testdll
extern "C"
{
// Returns a + b
double Add(double a, double b);
// Returns a - b
double Subtract(double a, double b);
// Returns a * b
double Multiply(double a, double b);
// Returns a / b
double Divide(double a, double b);
}
我也有一个 .def 文件,所以我有“真实”的名字
LIBRARY "MathFuncsDll"
EXPORTS
Add
Subtract
Multiply
Divide
我可以通过 ctype 从 dll 加载和访问函数,但我无法传递参数,请参阅 python 输出
>>> from ctypes import *
>>> x=windll.MathFuncsDll
>>> x
<WinDLL 'MathFuncsDll', handle 560000 at 29e1710>
>>> a=c_double(2.12)
>>> b=c_double(3.4432)
>>> x.Add(a,b)
Traceback (most recent call last):
File "<pyshell#76>", line 1, in <module>
x.Add(a,b)
ValueError: Procedure probably called with too many arguments (16 bytes in excess)
>>>
但是我可以在没有参数的情况下添加函数?!?!?!?!
>>> x.Add()
2619260
有人可以指出我正确的方向吗?我想忘记一些明显的事情,因为我可以从其他 dll 调用函数(例如 kernel32)