I am trying to understand what this means, the code I am looking at has
in .h
typedef void (*MCB)(); static MCB m_process;
in .
It introduces a function pointer type, pointing to a function returning nothing (void), not taking any parameters and naming the new type MCB.