我有一个包含结构的 C 程序
struct S{
int x;
struct timeval t;
};
和一个函数
int func(struct S s1, struct S s2)
我需要从我的 python 程序中调用这个函数。我正在使用 ctypes。Python 上的并行结构
import ctypes
from ctypes import *
class S(Structure):
_fields_ = [("x",c_int),
("t", ?)]
现在,我的问题是我将在 ? place 以及与之相关的任何依赖项。提前致谢。