thebarslider
Programmer
Okay, i have returned my pointer to a function pointer handler.
struct com {
char nm[COMMAX];
void (*handler)();
};
But what type do i set my function to, so it knows i am returning a function pointer?
struct com {
char nm[COMMAX];
void (*handler)();
};
But what type do i set my function to, so it knows i am returning a function pointer?