binana/3.3.5a/include/event/handler.h

20 lines
304 B
C
Raw Normal View History

#ifndef EVENT_HANDLER_H
#define EVENT_HANDLER_H
#include "system/types.h"
#include "storm/list.h"
DECLARE_STRUCT(EvtHandler);
STORM_TS_LIST(EvtHandler);
struct EvtHandler {
TSLink_EvtHandler link;
int32_t (*func)(const void*, void*);
void* param;
float priority;
int32_t marker;
};
#endif