summaryrefslogtreecommitdiff
path: root/apps/plugins/lua/lundump.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/lua/lundump.h')
-rw-r--r--apps/plugins/lua/lundump.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/apps/plugins/lua/lundump.h b/apps/plugins/lua/lundump.h
index f791a4f173..b2fe851e59 100644
--- a/apps/plugins/lua/lundump.h
+++ b/apps/plugins/lua/lundump.h
@@ -13,12 +13,13 @@
13/* load one chunk; from lundump.c */ 13/* load one chunk; from lundump.c */
14LUAI_FUNC Proto* luaU_undump (lua_State* L, ZIO* Z, Mbuffer* buff, const char* name); 14LUAI_FUNC Proto* luaU_undump (lua_State* L, ZIO* Z, Mbuffer* buff, const char* name);
15 15
16/* make header; from lundump.c */
17LUAI_FUNC void luaU_header (char* h);
18
19/* dump one chunk; from ldump.c */ 16/* dump one chunk; from ldump.c */
20LUAI_FUNC int luaU_dump (lua_State* L, const Proto* f, lua_Writer w, void* data, int strip); 17LUAI_FUNC int luaU_dump (lua_State* L, const Proto* f, lua_Writer w, void* data, int strip);
21 18
19#ifndef LUA_DISABLE_BYTECODE
20/* make header; from lundump.c */
21LUAI_FUNC void luaU_header (char* h);
22
22#ifdef luac_c 23#ifdef luac_c
23/* print one chunk; from print.c */ 24/* print one chunk; from print.c */
24LUAI_FUNC void luaU_print (const Proto* f, int full); 25LUAI_FUNC void luaU_print (const Proto* f, int full);
@@ -33,4 +34,5 @@ LUAI_FUNC void luaU_print (const Proto* f, int full);
33/* size of header of binary files */ 34/* size of header of binary files */
34#define LUAC_HEADERSIZE 12 35#define LUAC_HEADERSIZE 12
35 36
37#endif /* LUA_DISABLE_BYTECODE */
36#endif 38#endif