/* LuaEvent - Copyright (C) 2007 Thomas Harning * Licensed as LGPL - See doc/COPYING for details */ #ifndef LUAEVENT_H #define LUAEVENT_H #include #include #include #include typedef struct { struct event ev; lua_State* L; int callbackRef; } le_callback; int luaopen_luaevent(lua_State* L); #endif