17 lines
347 B
C
Executable File
17 lines
347 B
C
Executable File
/*
|
|
* "event_export.h"
|
|
*/
|
|
|
|
typedef struct Handler_t * Handler;
|
|
typedef struct Event_t * Event;
|
|
typedef struct Action_t * Action;
|
|
typedef struct Symbol_t * Symbol;
|
|
typedef struct Node_t * Node;
|
|
typedef struct UserActionCtx_t * UserActionCtx;
|
|
typedef struct Thread_t * Thread;
|
|
|
|
#include "event.h"
|
|
#include "action.h"
|
|
#include "handler.h"
|
|
|