1998-01-14 07:49:01 -08:00
|
|
|
/*
|
2018-08-23 10:26:12 -07:00
|
|
|
** $Id: lundump.h $
|
2005-11-16 03:55:07 -08:00
|
|
|
** load precompiled Lua chunks
|
1998-01-14 07:49:01 -08:00
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lundump_h
|
|
|
|
#define lundump_h
|
|
|
|
|
2014-03-11 07:22:54 -07:00
|
|
|
#include "llimits.h"
|
1998-01-14 07:49:01 -08:00
|
|
|
#include "lobject.h"
|
|
|
|
#include "lzio.h"
|
|
|
|
|
2014-02-27 08:56:20 -08:00
|
|
|
|
|
|
|
/* data to catch conversion errors */
|
|
|
|
#define LUAC_DATA "\x19\x93\r\n\x1a\n"
|
|
|
|
|
2014-04-15 07:29:30 -07:00
|
|
|
#define LUAC_INT 0x5678
|
2014-03-11 07:22:54 -07:00
|
|
|
#define LUAC_NUM cast_num(370.5)
|
2014-02-27 08:56:20 -08:00
|
|
|
|
2020-05-06 10:19:08 -07:00
|
|
|
/*
|
|
|
|
** Encode major-minor version in one byte, one nibble for each
|
|
|
|
*/
|
2023-07-03 10:12:54 -07:00
|
|
|
#define LUAC_VERSION (LUA_VERSION_MAJOR_N*16+LUA_VERSION_MINOR_N)
|
2020-05-06 10:19:08 -07:00
|
|
|
|
2014-02-27 08:56:20 -08:00
|
|
|
#define LUAC_FORMAT 0 /* this is the official format */
|
|
|
|
|
2002-06-05 10:26:23 -07:00
|
|
|
/* load one chunk; from lundump.c */
|
2015-09-08 08:41:05 -07:00
|
|
|
LUAI_FUNC LClosure* luaU_undump (lua_State* L, ZIO* Z, const char* name);
|
1999-12-02 11:11:51 -08:00
|
|
|
|
2003-01-27 07:52:57 -08:00
|
|
|
/* dump one chunk; from ldump.c */
|
2014-03-10 12:52:47 -07:00
|
|
|
LUAI_FUNC int luaU_dump (lua_State* L, const Proto* f, lua_Writer w,
|
|
|
|
void* data, int strip);
|
2002-06-05 10:26:23 -07:00
|
|
|
|
1999-03-30 12:29:34 -08:00
|
|
|
#endif
|