fix build-system wrt lua things.
[apps/madmutt.git] / lib-lua / lib-lua_priv.h
index 1dbb7f4..93dd397 100644 (file)
 #include <lualib.h>
 #include <lauxlib.h>
 
-#define LUA_MADMUTT          "madmutt"
+typedef struct reg_entry {
+    int type;
+    union {
+        int i;
+        char *s;
+    };
+} reg_entry;
 
-int luaopen_madmutt(lua_State *L);
 
 #endif