有一个来自 DLL(C 语言)的函数,link("parameters", &connection);
它接受一个字符串参数并初始化一个连接。
有一个函数connect(connection)
,connection
通过调用初始化的对象在哪里link()
。
我将 Python 连接对象connect()
作为参数传递给函数
connection_t = ctypes.c_uint32
link = mydll.link
link.argtypes=(ctypes.c_char_p, ctypes.POINTER(connection_t) )
connect = mydll.connect
connect.argtypes=(connection_t,)
...
connection = connection_t()
link ("localhost: 5412", ctypes.byref(connection))
...
但是,如果我将“连接”对象传输到 mydll 库的任何其他函数,该函数会返回一个值,但该值不正确。
func=mydll.func
status_t=ctypes.c_uint32
status=status_t()
func.argtypes=(ctypes.c_ulong,ctypes.POINTER(status_t))
result=func(connection, ctypes.byref(status))
在此示例result=0
中,但在此代码的 C 变体中,我收到了正确的值(不是 0)
为什么?