6 Jan
2005
6 Jan
'05
10:45 a.m.
Could I do ...
int (int) * p_my_function_pointer;
Or some other such madness? I'm reading MSDN about the indirection operator at the moment, maybe that will help to clear this up in my head. Can you recommend a page on "function types".
You can certainly do it via a typedef: typedef int mysig(int); mysig* p_my_function; // declares function pointer mysig myproc; // declares a function called myproc with signature mysig. John.