lua/lundump.h

29 lines
720 B
C
Raw Normal View History

1998-01-14 18:49:01 +03:00
/*
** $Id: lundump.h,v 1.23 2001/06/28 13:55:17 lhf Exp lhf $
1998-01-14 18:49:01 +03: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 22:11:51 +03:00
/* load one chunk */
2000-09-04 22:53:41 +04:00
Proto* luaU_undump (lua_State* L, ZIO* Z);
1999-12-02 22:11:51 +03:00
2000-09-04 22:53:41 +04:00
/* find byte order */
2001-07-06 00:29:15 +04:00
int luaU_endianness (void);
1999-03-31 00:29:34 +04:00
/* definitions for headers of binary files */
2001-07-06 00:29:15 +04:00
#define VERSION 0x41 /* last format change was in 4.1 */
#define VERSION0 0x41 /* last major change was in 4.1 */
#define LUA_SIGNATURE "\033Lua" /* binary files start with <esc>Lua */
1998-01-14 18:49:01 +03:00
/* a multiple of PI for testing native format */
1999-03-31 00:29:34 +04:00
/* multiplying by 1E8 gives non-trivial integer values */
#define TEST_NUMBER 3.14159265358979323846E8
#endif