SyntaxFix
Write A Post
Hire A Developer
Questions
Without the typedef word, in C++ the declaration would declare a variable FunctionFunc of type pointer to function of no arguments, returning void.
typedef
FunctionFunc
void
With the typedef it instead defines FunctionFunc as a name for that type.