1
0
Fork 0
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:
Maurus Cuelenaere 2009-05-27 22:48:50 +00:00
parent 64595105b1
commit b2581e143d
7 changed files with 398 additions and 3 deletions

View file

@ -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}
};