aboutsummaryrefslogtreecommitdiffstats
path: root/luaevent/include
diff options
context:
space:
mode:
authorThomas Harning Jr <harningt@gmail.com>2007-08-31 09:34:09 -0400
committerThomas Harning Jr <harningt@gmail.com>2007-08-31 09:34:09 -0400
commit4c2a04eded5c66c6696d4b53aee339f0f3ab8155 (patch)
treee5ad5a8ea9377f7b1c18732f094c11bcb610ae81 /luaevent/include
parentae3262e075eadefbae445e64576f6a10f0d3e236 (diff)
downloadluaevent-prosody-4c2a04eded5c66c6696d4b53aee339f0f3ab8155.tar.gz
luaevent-prosody-4c2a04eded5c66c6696d4b53aee339f0f3ab8155.zip
Reformed project layout from 'luaevent/*' -> '*'
Diffstat (limited to 'luaevent/include')
-rw-r--r--luaevent/include/luaevent.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/luaevent/include/luaevent.h b/luaevent/include/luaevent.h
deleted file mode 100644
index 2878632..0000000
--- a/luaevent/include/luaevent.h
+++ /dev/null
@@ -1,24 +0,0 @@
-/* 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