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

Added the ctr.uds lib (3DS-to-3DS wireless communication), Added a function to add ssl certificates for HTTP contexts, Minor documentation update.

The UDS lib is completely untested, because I only have 1 3DS.
This commit is contained in:
Firew0lf 2016-04-26 14:44:18 +02:00
parent f554f53a47
commit 707b1a451e
4 changed files with 616 additions and 1 deletions

View file

@ -128,6 +128,14 @@ The `ctr.thread` module.
*/
void load_thread_lib(lua_State *L);
/***
The `ctr.uds` module.
@table uds
@see ctr.uds
*/
void load_uds_lib(lua_State *L);
void unload_uds_lib(lua_State *L);
/***
Return whether or not the program should continue.
@function run
@ -198,6 +206,7 @@ struct { char *name; void (*load)(lua_State *L); void (*unload)(lua_State *L); }
{ "apt", load_apt_lib, unload_apt_lib },
{ "mic", load_mic_lib, NULL },
{ "thread", load_thread_lib, NULL },
{ "uds", load_uds_lib, unload_uds_lib },
{ NULL, NULL, NULL }
};