I have FFIExternalStructure which has at class side
fieldsDesc
^#(
char data[100];
int count;
)
if I try to do
EphCPPTestStructure rebuildFieldAccessors .
in order to generate the accessors for the members of the struct it complains with an error that it does not recognise the type of " [ "��
Does that mean that char arrays are other arrays are not supported as struct members or will I have to do this manually ?��