aboutsummaryrefslogtreecommitdiff
path: root/undump.h
diff options
context:
space:
mode:
Diffstat (limited to 'undump.h')
-rw-r--r--undump.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/undump.h b/undump.h
index fbe84f14..1bb6c300 100644
--- a/undump.h
+++ b/undump.h
@@ -1,10 +1,11 @@
1/* 1/*
2** undump.h 2** undump.h
3** definitions for lua decompiler 3** definitions for lua decompiler
4** $Id: undump.h,v 1.3 1996/11/14 11:44:34 lhf Exp lhf $ 4** $Id: undump.h,v 1.4 1997/04/14 12:12:40 lhf Exp roberto $
5*/ 5*/
6 6
7#include "func.h" 7#include "func.h"
8#include "zio.h"
8 9
9#define IsMain(f) (f->lineDefined==0) 10#define IsMain(f) (f->lineDefined==0)
10 11
@@ -19,5 +20,5 @@
19#define TEST_WORD 0x1234 /* a word for testing byte ordering */ 20#define TEST_WORD 0x1234 /* a word for testing byte ordering */
20#define TEST_FLOAT 0.123456789e-23 /* a float for testing representation */ 21#define TEST_FLOAT 0.123456789e-23 /* a float for testing representation */
21 22
22TFunc* luaI_undump1(FILE* D); /* load one chunk */ 23
23int luaI_undump(FILE* D); /* load all chunks */ 24int luaI_undump(ZIO* Z); /* load all chunks */