include/buffer_event.h

changeset 41
fce1995f0db8
child 42
b1742e841e5a
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/include/buffer_event.h	Fri Sep 21 14:35:11 2007 -0400
@@ -0,0 +1,21 @@
+/* LuaEvent - Copyright (C) 2007 Thomas Harning <harningt@gmail.com>
+ * Licensed as LGPL - See doc/COPYING for details */
+ #ifndef BUFFER_EVENT_H
+ #define BUFFER_EVENT_H
+ 
+#include "luaevent.h"
+#include <lua.h>
+#include <sys/types.h>
+#include <sys/time.h>
+#include <event.h>
+
+typedef struct {
+	struct bufferevent* ev;
+	le_base* base;
+} le_bufferevent;
+
+int buffer_event_register(lua_State* L);
+int is_buffer_event(lua_State* L, int idx);
+le_bufferevent* buffer_event_check(lua_State* L, int idx);
+
+#endif

mercurial