summaryrefslogtreecommitdiff
path: root/lib/lua/includes/lundump.h
diff options
context:
space:
mode:
authorpixel <pixel>2003-11-06 11:56:07 +0000
committerpixel <pixel>2003-11-06 11:56:07 +0000
commitbb6ade743cea6ba6f4f8746a12d52fd1886f4db9 (patch)
tree5933870bd6be14674dab87bd8386631f16322f81 /lib/lua/includes/lundump.h
parentf70ad229bc765f3e6fd218f1e54bd0828fc9e1b4 (diff)
Adding LUA
Diffstat (limited to 'lib/lua/includes/lundump.h')
-rw-r--r--lib/lua/includes/lundump.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/lib/lua/includes/lundump.h b/lib/lua/includes/lundump.h
new file mode 100644
index 0000000..95080d1
--- /dev/null
+++ b/lib/lua/includes/lundump.h
@@ -0,0 +1,34 @@
+/*
+** $Id: lundump.h,v 1.1 2003-11-06 11:56:07 pixel Exp $
+** load pre-compiled Lua chunks
+** See Copyright Notice in lua.h
+*/
+
+#ifndef lundump_h
+#define lundump_h
+
+#include "lobject.h"
+#include "lzio.h"
+
+/* load one chunk; from lundump.c */
+Proto* luaU_undump (lua_State* L, ZIO* Z, Mbuffer* buff);
+
+/* find byte order; from lundump.c */
+int luaU_endianness (void);
+
+/* dump one chunk; from ldump.c */
+void luaU_dump (lua_State* L, const Proto* Main, lua_Chunkwriter w, void* data);
+
+/* print one chunk; from print.c */
+void luaU_print (const Proto* Main);
+
+/* definitions for headers of binary files */
+#define LUA_SIGNATURE "\033Lua" /* binary files start with "<esc>Lua" */
+#define VERSION 0x50 /* last format change was in 5.0 */
+#define VERSION0 0x50 /* last major change was in 5.0 */
+
+/* a multiple of PI for testing native format */
+/* multiplying by 1E7 gives non-trivial integer values */
+#define TEST_NUMBER ((lua_Number)3.14159265358979323846E7)
+
+#endif