From 948984309a3c1dd6b92f018926e9831083c803e3 Mon Sep 17 00:00:00 2001 From: William Wilgus Date: Mon, 22 Oct 2018 14:00:58 -0400 Subject: lua move rocklib_img to its own separate loadable module allows rocklib_img to be excluded if needed stops rocklib_aux from generating redundant prototypes for lcd_mono_bitmap[_part] Change-Id: Ie208ad71ab5f9a7deb026dc01a5b0a0631a0d29c --- apps/plugins/lua/rocklib.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'apps/plugins/lua/rocklib.c') diff --git a/apps/plugins/lua/rocklib.c b/apps/plugins/lua/rocklib.c index ffd449e9d4..82a03ab6b4 100644 --- a/apps/plugins/lua/rocklib.c +++ b/apps/plugins/lua/rocklib.c @@ -26,7 +26,6 @@ #include "lua.h" #include "lauxlib.h" -#include "rocklib_img.h" #include "rocklib.h" #include "lib/helper.h" #include "lib/pluginlib_actions.h" @@ -416,7 +415,6 @@ static const luaL_Reg rocklib[] = #undef RB_FUNC extern const luaL_Reg rocklib_aux[]; -extern const luaL_Reg rocklib_img[]; /* ** Open Rockbox library @@ -425,8 +423,7 @@ LUALIB_API int luaopen_rock(lua_State *L) { luaL_register(L, LUA_ROCKLIBNAME, rocklib); luaL_register(L, LUA_ROCKLIBNAME, rocklib_aux); - luaL_register(L, LUA_ROCKLIBNAME, rocklib_img); - + static const struct lua_int_reg rlib_const_int[] = { /* useful integer constants */ @@ -486,8 +483,6 @@ LUALIB_API int luaopen_rock(lua_State *L) lua_setfield(L, -2, rlcs->name); } - rli_init(L); - return 1; } -- cgit v1.2.3