src/lua_objs.h
changeset 93 42ade8285570
child 105 b6b183fbf373
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/lua_objs.h	Tue Mar 31 19:35:51 2009 +0300
@@ -0,0 +1,18 @@
+#ifndef LUA_OBJS_H
+#define LUA_OBJS_H
+
+/**
+ * @file
+ *
+ * Defines lua functions to access the various objects in a nexus
+ */
+#include "nexus.h"
+
+#include <lua5.1/lua.h>
+
+/**
+ * Registers our lua runtime objects into the given lua state
+ */
+err_t lua_objs_init (lua_State *L, struct nexus *nexus);
+
+#endif /* LUA_OBJS_H */