mirror of
https://github.com/ctruLua/ctruLua.git
synced 2025-10-28 00:39:30 +00:00
Updated all the libs, added citro3d, added ctr.swkbd (WIP, untested)
This commit is contained in:
parent
68a44645f7
commit
49c87e5526
97 changed files with 7341 additions and 944 deletions
|
|
@ -136,6 +136,13 @@ The `ctr.uds` module.
|
|||
void load_uds_lib(lua_State *L);
|
||||
void unload_uds_lib(lua_State *L);
|
||||
|
||||
/***
|
||||
The `ctr.swkbd` module.
|
||||
@table swkbd
|
||||
@see ctr.swkbd
|
||||
*/
|
||||
void load_swkbd_lib(lua_State *L);
|
||||
|
||||
/***
|
||||
Return whether or not the program should continue.
|
||||
@function run
|
||||
|
|
@ -207,6 +214,7 @@ struct { char *name; void (*load)(lua_State *L); void (*unload)(lua_State *L); }
|
|||
{ "mic", load_mic_lib, NULL },
|
||||
{ "thread", load_thread_lib, NULL },
|
||||
{ "uds", load_uds_lib, unload_uds_lib },
|
||||
{ "swkbd", load_swkbd_lib, NULL },
|
||||
{ NULL, NULL, NULL }
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue