有一个来自 DLL(C 语言)的函数,
link("parameters", &connection);
它接受一个字符串参数并初始化一个连接。有一个函数
connect(connection)
,其中连接 - 对象,通过调用初始化link()
。
问题:如何将Python连接对象函数Connect()作为参数传递?
from ctypes import *
mydll = CDLL (link.dll)
# How define the connection object?
top = link ("localhost: 5412", connection)
top = connect (connection)