aboutsummaryrefslogtreecommitdiff
path: root/undump.h
diff options
context:
space:
mode:
Diffstat (limited to 'undump.h')
-rw-r--r--undump.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/undump.h b/undump.h
deleted file mode 100644
index 86da43af..00000000
--- a/undump.h
+++ /dev/null
@@ -1,30 +0,0 @@
1/*
2** undump.h
3** definitions for lua decompiler
4** $Id: undump.h,v 1.5 1997/06/16 16:50:22 roberto Exp roberto $
5*/
6
7#ifndef undump_h
8#define undump_h
9
10#include "func.h"
11#include "zio.h"
12
13#define IsMain(f) (f->lineDefined==0)
14
15/* definitions for chunk headers */
16
17#define ID_CHUNK 27 /* ESC */
18#define ID_FUN 'F'
19#define ID_VAR 'V'
20#define ID_STR 'S'
21#define SIGNATURE "Lua"
22#define VERSION 0x25 /* last format change was in 2.5 */
23#define TEST_WORD 0x1234 /* a word for testing byte ordering */
24#define TEST_FLOAT 0.123456789e-23 /* a float for testing representation */
25
26
27TFunc* luaI_undump1(ZIO* Z);
28int luaI_undump(ZIO* Z); /* load all chunks */
29
30#endif