1998-01-14 07:49:01 -08:00
|
|
|
/*
|
2001-03-26 06:31:49 -08:00
|
|
|
** $Id: lundump.h,v 1.20 2001/02/23 17:17:25 roberto Exp roberto $
|
1998-01-14 07:49:01 -08:00
|
|
|
** load pre-compiled Lua chunks
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lundump_h
|
|
|
|
#define lundump_h
|
|
|
|
|
|
|
|
#include "lobject.h"
|
|
|
|
#include "lzio.h"
|
|
|
|
|
1999-12-02 11:11:51 -08:00
|
|
|
/* load one chunk */
|
2000-09-04 11:53:41 -07:00
|
|
|
Proto* luaU_undump (lua_State* L, ZIO* Z);
|
1999-12-02 11:11:51 -08:00
|
|
|
|
2000-09-04 11:53:41 -07:00
|
|
|
/* find byte order */
|
|
|
|
int luaU_endianess (void);
|
1999-03-30 12:29:34 -08:00
|
|
|
|
|
|
|
/* definitions for headers of binary files */
|
2000-04-25 09:44:31 -07:00
|
|
|
#define VERSION 0x40 /* last format change was in 4.0 */
|
|
|
|
#define VERSION0 0x40 /* last major change was in 4.0 */
|
1999-03-30 12:29:34 -08:00
|
|
|
#define ID_CHUNK 27 /* binary files start with ESC... */
|
2001-03-26 06:31:49 -08:00
|
|
|
#define SIGNATURE "Lua" /* ...followed by this signature */
|
1998-01-14 07:49:01 -08:00
|
|
|
|
1999-04-13 13:16:37 -07:00
|
|
|
/* formats for error messages */
|
2000-11-07 04:44:44 -08:00
|
|
|
#define SOURCE tf->lineDefined,tf->source->str
|
|
|
|
#define IN tf,SOURCE
|
1998-01-14 07:49:01 -08:00
|
|
|
|
1999-07-08 05:43:23 -07:00
|
|
|
/* a multiple of PI for testing native format */
|
1999-03-30 12:29:34 -08:00
|
|
|
/* multiplying by 1E8 gives non-trivial integer values */
|
|
|
|
#define TEST_NUMBER 3.14159265358979323846E8
|
|
|
|
|
|
|
|
#endif
|