Setup management of socket create/close.
[luaevent.git] / luaevent / include / luaevent.h
blob8b97be7039b390345108a8afed110eaec17aa855
1 /* LuaEvent - Copyright (C) 2007 Thomas Harning <harningt@gmail.com>
2 * Licensed as LGPL - See doc/COPYING for details */
3 #ifndef LUAEVENT_H
4 #define LUAEVENT_H
6 #include <lua.h>
7 #include <sys/types.h>
8 #include <sys/time.h>
9 #include <event.h>
11 typedef struct {
12 struct event ev;
13 lua_State* L;
14 int callbackRef;
15 int objectRef; /* TEMP */
16 } le_callback;
18 int luaopen_luaevent(lua_State* L);
20 #endif