Well, I don't know if this is possible, but I need to create an Array of pointers, those pointers need to be some functions that are outside the class, and I need to call those functions inside the class .
Well, I don't know if this is possible, but I need to create an Array of pointers, those pointers need to be some functions that are outside the class, and I need to call those functions inside the class .
That is possible.
class::NClass
What is this? It isn't a constructor, since the method name doesn't match the class name. Therefore, it MUST have a return type.
void *FN[16];
Local variables in the constructor are pretty useless.