3 ** definitions for lua decompiler
4 ** $Id: undump.h,v 1.6 1997/06/17 18:19:17 roberto Exp $
13 #define IsMain(f) (f->lineDefined==0)
15 /* definitions for chunk headers */
17 #define ID_CHUNK 27 /* ESC */
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 */
27 TFunc
* luaI_undump1(ZIO
* Z
);
28 int luaI_undump(ZIO
* Z
); /* load all chunks */