lua/lundump.h

36 lines
1.0 KiB
C
Raw Normal View History

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