summaryrefslogtreecommitdiff
path: root/apps/plugins/lua/lundump.h
diff options
context:
space:
mode:
authorWilliam Wilgus <me.theuser@yahoo.com>2019-07-18 14:50:38 -0500
committerWilliam Wilgus <me.theuser@yahoo.com>2019-07-18 14:56:00 -0500
commit8bd992c5035bfee6aedbcae7669be5b823537aad (patch)
tree2db34dbf0765362d875242b9908f3d0d95b387bb /apps/plugins/lua/lundump.h
parentd5908f520e8b21091766076584c9f582dbcdae1c (diff)
downloadrockbox-8bd992c5035bfee6aedbcae7669be5b823537aad.zip
rockbox-8bd992c5035bfee6aedbcae7669be5b823537aad.tar.gz
rockbox-8bd992c5035bfee6aedbcae7669be5b823537aad.tar.bz2
rockbox-8bd992c5035bfee6aedbcae7669be5b823537aad.tar.xz
lua disable bytecode dump & undump functions
Adds a flag to remove the ability to dump and load lua bytecode saves 6+kb Change-Id: I080323df7f03f752e0a10928e22a7ce3190a9633
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 f791a4f..b2fe851 100644
--- a/apps/plugins/lua/lundump.h
+++ b/apps/plugins/lua/lundump.h
@@ -13,12 +13,13 @@
/* 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);
+#ifndef LUA_DISABLE_BYTECODE
+/* make header; from lundump.c */
+LUAI_FUNC void luaU_header (char* h);
+
#ifdef luac_c
/* print one chunk; from print.c */
LUAI_FUNC void luaU_print (const Proto* f, int full);
@@ -33,4 +34,5 @@ LUAI_FUNC void luaU_print (const Proto* f, int full);
/* size of header of binary files */
#define LUAC_HEADERSIZE 12
+#endif /* LUA_DISABLE_BYTECODE */
#endif