1
0
Fork 0
mirror of https://github.com/ctruLua/ctruLua.git synced 2025-10-28 00:39:30 +00:00

Added the ctr.cfgu lib, to get User Configuration, Added a method in HTTPC

Warning: requires the latest ctrulib to build !
This commit is contained in:
Firew0lf 2015-10-07 12:08:44 +02:00
parent 410b736ab0
commit 71ddca2bf4
3 changed files with 347 additions and 6 deletions

View file

@ -70,6 +70,13 @@ The `ctr.qtm` module.
*/
void load_qtm_lib(lua_State *L);
/***
The `ctr.cfgu` module.
@table cfgu
@see ctr.cfgu
*/
void load_cfgu_lib(lua_State *L);
//void load_cam_lib(lua_State *L);
/***
@ -111,6 +118,7 @@ struct { char *name; void (*load)(lua_State *L); void (*unload)(lua_State *L); }
{ "fs", load_fs_lib, unload_fs_lib },
{ "httpc", load_httpc_lib, unload_httpc_lib },
{ "qtm", load_qtm_lib, NULL },
{ "cfgu", load_cfgu_lib, NULL },
// { "cam", load_cam_lib, NULL },
{ NULL, NULL }
};