D_EVT_GETHANDLERS (event based plugins)
This page applies to Harlequin v13.1r0 and later; and to Harlequin MultiRIP but not Harlequin Core
D_EVT_GETHANDLERS Selector
Parameter: EvtGetHandlersParam * param
Call type: Single call
Returns the number of event handlers that are implemented by this plugin and an array of function pointers to them. The RIP will register these handlers on behalf of the plugin, and deāregister them on RIP shutdown.
For more information on events, see Events system.
typedef struct EvtGetHandlersParam {
int32 n_handlers; /** (O) how many event handlers the plugin supports */
sw_event_handlers * handlers; /** (O) the event handlers */
} EvtGetHandlersParam ;