0

我有一个带有将 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代码的建议都会被采纳。

4

1 回答 1

3

我对您的代码进行了以下更改,它对我有用,但我不确定这是 100% 正确的方法:

  1. 使用 PYFUNCTYPE。
  2. 只需传递 python 类对象。

例如:

prototype = c.PYFUNCTYPE(    
    c.c_char_p,                
    c.py_object
)

func = prototype(('MyFunction', libTest))

func( MyClass )
于 2012-06-27T01:41:12.180 回答