SILC_TASK_CALLBACK_GLOBAL
NAME
#define SILC_TASK_CALLBACK_GLOBAL ...
DESCRIPTION
Generic macro to define task callback functions. This defines a
function with name `func' as a task callback function. This
differs from SILC_TASK_CALLBACK in that the defined function is
not static.
SOURCE
#define SILC_TASK_CALLBACK_GLOBAL(func) \
void func(SilcSchedule schedule, void *app_context, SilcTaskEvent type, \
SilcUInt32 fd, void *context)
|