EVENT_HANDLER Type (Pointer)

events.h

typedef void (* EVENT_HANDLER) (EVENT *) CALLBACK;

A pointer to an event handler.

EVENT_HANDLER is a pointer type, pointing to a void function which accepts one parameter which is a pointer to an EVENT. See EV_captureEvents and EV_hook for more info.