Hi, My application will be using an unknown number of clutter actors at build time. I'm wanting to create a struct of arrays that I can later realloc when required.
struct cNode
{
int numNodes;
ClutterActor *clutterArray[1];
cairo_t *cr[1];
};
Is this the correct way to go about this? Is there a better way?
