diff options
-rw-r--r-- | undump.h | 9 |
1 files changed, 3 insertions, 6 deletions
@@ -1,13 +1,10 @@ | |||
1 | /* | 1 | /* |
2 | ** undump.h | 2 | ** undump.h |
3 | ** definitions for lua decompiler | 3 | ** definitions for lua decompiler |
4 | ** $Id$ | 4 | ** $Id: undump.h,v 1.1 1996/03/08 21:43:21 lhf Exp lhf $ |
5 | */ | 5 | */ |
6 | 6 | ||
7 | #include "inout.h" | 7 | #include "func.h" |
8 | #include "mem.h" | ||
9 | #include "opcode.h" | ||
10 | #include "table.h" | ||
11 | 8 | ||
12 | #define IsMain(f) (f->lineDefined==0) | 9 | #define IsMain(f) (f->lineDefined==0) |
13 | 10 | ||
@@ -23,4 +20,4 @@ | |||
23 | #define TEST_FLOAT 0.123456789e-23 /* a float for testing representation */ | 20 | #define TEST_FLOAT 0.123456789e-23 /* a float for testing representation */ |
24 | 21 | ||
25 | TFunc* luaI_undump1(FILE* D); /* load one chunk */ | 22 | TFunc* luaI_undump1(FILE* D); /* load one chunk */ |
26 | void luaI_undump(FILE* D); /* load all chunks */ | 23 | int luaI_undump(FILE* D); /* load all chunks */ |