lua/lundump.h

34 lines
937 B
C
Raw Normal View History

1998-01-14 07:49:01 -08:00
/*
** $Id: lundump.h,v 1.33 2003/08/15 13:48:53 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"
2002-06-05 10:26:23 -07:00
/* load one chunk; from lundump.c */
Proto* luaU_undump (lua_State* L, ZIO* Z, Mbuffer* buff, const char *name);
1999-12-02 11:11:51 -08:00
2002-06-05 10:26:23 -07:00
/* find byte order; from lundump.c */
2001-07-05 13:29:15 -07:00
int luaU_endianness (void);
1999-03-30 12:29:34 -08:00
2003-01-27 07:52:57 -08:00
/* dump one chunk; from ldump.c */
int luaU_dump (lua_State* L, const Proto* Main, lua_Chunkwriter w, void* data, int strip);
2002-06-05 10:26:23 -07:00
/* print one chunk; from print.c */
void luaU_print (const Proto* Main);
1999-03-30 12:29:34 -08:00
/* definitions for headers of binary files */
2002-06-05 10:26:23 -07:00
#define VERSION 0x50 /* last format change was in 5.0 */
#define VERSION0 0x50 /* last major change was in 5.0 */
1998-01-14 07:49:01 -08:00
/* a multiple of PI for testing native format */
2003-04-10 10:39:41 -07:00
/* multiplying by 1E7 gives non-trivial integer values */
#define TEST_NUMBER ((lua_Number)3.14159265358979323846E7)
1999-03-30 12:29:34 -08:00
#endif