forked from len0rd/rockbox
Lua: add support for os library
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21106 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
64595105b1
commit
b2581e143d
7 changed files with 398 additions and 3 deletions
|
@ -30,9 +30,10 @@
|
|||
PLUGIN_HEADER
|
||||
|
||||
static const luaL_Reg lualibs[] = {
|
||||
{"", luaopen_base},
|
||||
{LUA_TABLIBNAME, luaopen_table},
|
||||
{LUA_STRLIBNAME, luaopen_string},
|
||||
{"", luaopen_base},
|
||||
{LUA_TABLIBNAME, luaopen_table},
|
||||
{LUA_STRLIBNAME, luaopen_string},
|
||||
{LUA_OSLIBNAME, luaopen_os},
|
||||
{LUA_ROCKLIBNAME, luaopen_rock},
|
||||
{NULL, NULL}
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue