I have a C program containing a structure
struct S{
int x;
struct timeval t;
};
and a function
int func(struct S s1, struct S s2)
I need to call this function from my python program.
I am using ctypes.The parallel structure on Python
import ctypes
from ctypes import *
class S(Structure):
_fields_ = [("x",c_int),
("t", ?)]
Now, my question is what will I write in the ? place and any dependencies related to it.
Thanks in advance.
Find the definition of
struct timevalin your platform’s C include files (the Internet suggestssys/time.h), then transcode that into a ctypes structure.On my platform a
struct timevalis(and I suppose this is the standard anyway), so
would probably fit the bill.