summaryrefslogtreecommitdiff
path: root/src/lapi.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lapi.h')
-rw-r--r--src/lapi.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/lapi.h b/src/lapi.h
new file mode 100644
index 00000000..ca9a1173
--- /dev/null
+++ b/src/lapi.h
@@ -0,0 +1,20 @@
+/*
+** $Id: lapi.h,v 1.2 1998/06/19 16:14:09 roberto Exp $
+** Auxiliary functions from Lua API
+** See Copyright Notice in lua.h
+*/
+
+#ifndef lapi_h
+#define lapi_h
+
+
+#include "lua.h"
+#include "lobject.h"
+
+
+TObject *luaA_Address (lua_Object o);
+void luaA_pushobject (TObject *o);
+void luaA_packresults (void);
+int luaA_passresults (void);
+
+#endif