我有一个带有将 PyObject 作为参数的函数的 dll,例如
void MyFunction(PyObject* obj)
{
PyObject *func, *res, *test;
//function getAddress of python object
func = PyObject_GetAttrString(obj, "getAddress");
res = PyObject_CallFunction(func, NULL);
cout << "Address: " << PyString_AsString( PyObject_Str(res) ) << endl;
}
我想使用 ctypes 在 python 的 dll 中调用这个函数
我的python代码看起来像
import ctypes as c
path = "h:\libTest"
libTest = c.cdll.LoadLibrary( path )
class MyClass:
@classmethod
def getAddress(cls):
return "Some Address"
prototype = c.CFUNCTYPE(
c.c_char_p,
c.py_object
)
func = prototype(('MyFunction', libTest))
pyobj = c.py_object(MyClass)
func( c.byref(pyobj) )
当我运行此代码时,我的 Python 代码中存在一些问题,我收到了如下消息
WindowsError:异常:访问冲突读取 0x00000020
任何改进python代码的建议都会被采纳。