forked from KolibriOS/kolibrios
4f7ee97ec9
git-svn-id: svn://kolibrios.org@4680 a494cfbc-eb01-0410-851d-a64ba20cac60
26 lines
602 B
C
26 lines
602 B
C
/*
|
|
** $Id: lundump.h,v 1.43 2010/10/26 00:23:46 lhf Exp $
|
|
** load precompiled Lua chunks
|
|
** See Copyright Notice in lua.h
|
|
*/
|
|
|
|
#ifndef lundump_h
|
|
#define lundump_h
|
|
|
|
#include "lobject.h"
|
|
#include "lzio.h"
|
|
|
|
/* load one chunk; from lundump.c */
|
|
LUAI_FUNC Proto* luaU_undump (lua_State* L, ZIO* Z, Mbuffer* buff, const char* name);
|
|
|
|
/* make header; from lundump.c */
|
|
LUAI_FUNC void luaU_header (char* h);
|
|
|
|
/* dump one chunk; from ldump.c */
|
|
LUAI_FUNC int luaU_dump (lua_State* L, const Proto* f, lua_Writer w, void* data, int strip);
|
|
|
|
/* size of header of binary files */
|
|
#define LUAC_HEADERSIZE 18
|
|
|
|
#endif
|