38int _callbackGetHandle(_In_z_
const char* cbtype, _In_
GenericCallback func);
39_Ret_opt_valid_
GenericCallback _callbackGetFunc(_In_z_
const char* cbtype,
int handle);
53#define callbackGetHandle(cbtype, func) _callbackGetHandle(#cbtype, (GenericCallback)((cbtype)func))
67#define callbackGetFunc(cbtype, handle) ((cbtype)_callbackGetFunc(#cbtype, handle))
void(* GenericCallback)()
Generic callback function pointer type.