我从MSDN DLL example创建了MathFuncsDll.dll,并且运行调用.cpp工作正常。现在,尝试使用像
这样的ctypes在IPython中加载它import ctypes
lib = ctypes.WinDLL('MathFuncsDll.dll')
在正确的文件夹中产生
UnicodeDecodeError: 'ascii' codec can't decode byte 0xe4 in position 28: ordinal not in range(128)
同样在Python shell中,这会产生
WindowsError: [Error 193] %1 is not a valid Win32 application
我应该改变什么?嗯,它可能是Win 7 64位对比某些32位dll还是什么对吗?我稍后会再次检查。
答案 0 :(得分:3)
ctypes
不适用于编写MathFuncsDLL示例的C ++。
相反,用C语言写,或者至少导出一个“C”接口:
#ifdef __cplusplus
extern "C" {
#endif
__declspec(dllexport) double Add(double a, double b)
{
return a + b;
}
#ifdef __cplusplus
}
#endif
另请注意,调用约定默认为__cdecl
,因此请使用CDLL
代替WinDLL
(使用__stdcall
调用约定):
>>> import ctypes
>>> dll=ctypes.CDLL('server')
>>> dll.Add.restype = ctypes.c_double
>>> dll.Add.argtypes = [ctypes.c_double,ctypes.c_double]
>>> dll.Add(1.5,2.7)
4.2