diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/luaevent.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/include/luaevent.h b/include/luaevent.h new file mode 100644 index 0000000..2878632 --- /dev/null +++ b/include/luaevent.h @@ -0,0 +1,24 @@ +/* LuaEvent - Copyright (C) 2007 Thomas Harning <harningt@gmail.com> + * Licensed as LGPL - See doc/COPYING for details */ +#ifndef LUAEVENT_H +#define LUAEVENT_H + +#include <lua.h> +#include <sys/types.h> +#include <sys/time.h> +#include <event.h> + +typedef struct { + struct event_base* base; + lua_State* loop_L; +} le_base; + +typedef struct { + struct event ev; + le_base* base; + int callbackRef; +} le_callback; + +int luaopen_luaevent(lua_State* L); + +#endif |