aboutsummaryrefslogtreecommitdiff
path: root/lundump.h
diff options
context:
space:
mode:
Diffstat (limited to 'lundump.h')
-rw-r--r--lundump.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/lundump.h b/lundump.h
index 5add1726..1204c2c5 100644
--- a/lundump.h
+++ b/lundump.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lundump.h,v 1.39 2012/05/08 13:53:33 roberto Exp roberto $ 2** $Id: lundump.h,v 1.40 2014/02/27 16:56:20 roberto Exp roberto $
3** load precompiled Lua chunks 3** load precompiled Lua chunks
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -22,9 +22,11 @@
22#define LUAC_FORMAT 0 /* this is the official format */ 22#define LUAC_FORMAT 0 /* this is the official format */
23 23
24/* load one chunk; from lundump.c */ 24/* load one chunk; from lundump.c */
25LUAI_FUNC Closure* luaU_undump (lua_State* L, ZIO* Z, Mbuffer* buff, const char* name); 25LUAI_FUNC Closure* luaU_undump (lua_State* L, ZIO* Z, Mbuffer* buff,
26 const char* name);
26 27
27/* dump one chunk; from ldump.c */ 28/* dump one chunk; from ldump.c */
28LUAI_FUNC int luaU_dump (lua_State* L, const Proto* f, lua_Writer w, void* data, int strip); 29LUAI_FUNC int luaU_dump (lua_State* L, const Proto* f, lua_Writer w,
30 void* data, int strip);
29 31
30#endif 32#endif