I try to pass a pointer of a structure which is given me as a return value from the function ‘bar’ to the function ‘foo_write’. But I get the error message ‘TypeError: must be a ctypes type’ for line ‘foo = POINTER(temp_foo)’. In the ctypes online help I found that ‘ctypes.POINTER’ only works with ctypes types. Do you know of another way? What would you recommend?
C:
typedef struct FOO_{
int i;
float *b1;
float (*w1)[];
}FOO;
foo *bar(int foo_parameter) {...
void foo_write(FOO *foo)
Python with ctypes:
class foo(Structure):
_fields_=[("i",c_int),
("b1",POINTER(c_int)),
("w1",POINTER(c_float))]
temp_foo=foo(0,None,None)
foo = POINTER(temp_foo)
foo=myclib.bar(foo_parameter)
myclib.foo_write(foo)
Your
barfunction has an incorrect definition, I guess you mean it isstruct FOO_ *bar(int);?The Python code is wrong in the sense that
foo_parameteris never declared, so I’m not 100% sure what you want to do. I assume you want to pass a parameter of your python-declaredfoo, which is an instance of astruct FOO_, into the Cbar(int)and get back a pointer tostruct FOO_.You don’t need POINTER to do that, the following will work:
Since CTypes will wrap the return type of
bar()in a pointer-to-struct for you.