forked from len0rd/rockbox
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
This commit is contained in:
parent
7a132a257a
commit
948984309a
5 changed files with 23 additions and 25 deletions
|
@ -24,6 +24,7 @@
|
|||
#include "lauxlib.h"
|
||||
#include "lualib.h"
|
||||
#include "rocklib.h"
|
||||
#include "rocklib_img.h"
|
||||
#include "luadir.h"
|
||||
|
||||
|
||||
|
@ -34,6 +35,7 @@ static const luaL_Reg lualibs[] = {
|
|||
{LUA_STRLIBNAME, luaopen_string},
|
||||
{LUA_OSLIBNAME, luaopen_os},
|
||||
{LUA_ROCKLIBNAME, luaopen_rock},
|
||||
{LUA_ROCKLIBNAME, luaopen_rock_img},
|
||||
{LUA_BITLIBNAME, luaopen_bit},
|
||||
{LUA_IOLIBNAME, luaopen_io},
|
||||
{LUA_LOADLIBNAME, luaopen_package},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue