commit bb26efbbec457d43560d979af3255385d0db8226 parent 5c0e5fd36d87e91ec65af3d3b791e64941e13b86 Author: Luiz Henrique de Figueiredo <lhf@tecgraf.puc-rio.br> Date: Fri, 8 Mar 1996 18:43:01 -0300 definitions for lua decompiler undump is now a module Diffstat:
A | undump.h | | | 26 | ++++++++++++++++++++++++++ |
1 file changed, 26 insertions(+), 0 deletions(-)
diff --git a/undump.h b/undump.h @@ -0,0 +1,26 @@ +/* +** undump.h +** definitions for lua decompiler +** $Id$ +*/ + +#include "inout.h" +#include "mem.h" +#include "opcode.h" +#include "table.h" + +#define IsMain(f) (f->lineDefined==0) + +/* definitions for chunk headers */ + +#define ID_CHUNK 27 /* ESC */ +#define ID_FUN 'F' +#define ID_VAR 'V' +#define ID_STR 'S' +#define SIGNATURE "Lua" +#define VERSION 0x23 /* 2.3 */ +#define TEST_WORD 0x1234 /* a word for testing byte ordering */ +#define TEST_FLOAT 0.123456789e-23 /* a float for testing representation */ + +TFunc* luaI_undump1(FILE* D); /* load one chunk */ +void luaI_undump(FILE* D); /* load all chunks */