moved some includes to undump.c
luaI_undump now returns int
This commit is contained in:
9
undump.h
9
undump.h
@@ -1,13 +1,10 @@
|
|||||||
/*
|
/*
|
||||||
** undump.h
|
** undump.h
|
||||||
** definitions for lua decompiler
|
** definitions for lua decompiler
|
||||||
** $Id$
|
** $Id: undump.h,v 1.1 1996/03/08 21:43:21 lhf Exp lhf $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "inout.h"
|
#include "func.h"
|
||||||
#include "mem.h"
|
|
||||||
#include "opcode.h"
|
|
||||||
#include "table.h"
|
|
||||||
|
|
||||||
#define IsMain(f) (f->lineDefined==0)
|
#define IsMain(f) (f->lineDefined==0)
|
||||||
|
|
||||||
@@ -23,4 +20,4 @@
|
|||||||
#define TEST_FLOAT 0.123456789e-23 /* a float for testing representation */
|
#define TEST_FLOAT 0.123456789e-23 /* a float for testing representation */
|
||||||
|
|
||||||
TFunc* luaI_undump1(FILE* D); /* load one chunk */
|
TFunc* luaI_undump1(FILE* D); /* load one chunk */
|
||||||
void luaI_undump(FILE* D); /* load all chunks */
|
int luaI_undump(FILE* D); /* load all chunks */
|
||||||
|
|||||||
Reference in New Issue
Block a user