I know this is old but the info here is wrong.

You can have function pointers in your structs.

typedef struct
{

void* fCallback;
}DATA;


DATA* mydata = new(DATA);
mydata.fCallback=vtest2;
mydata.fCallback("Hello World");

The manual goes into detail on how to use function pointers.


---------------------
There is no signature here.


QUIT LOOKING FOR ONE!