Say I have the following c code:
typedef struct _test test;
struct _test {
test* just_a_test;
char* just_a_char;
};
Would the following implementation work?
class test(Structure):
_fields_ = [
('just_a_test', POINTER(test)),
('just_a_char', c_char_p),
]
I'm just confused regarding the first pointer in the structure.