1
0
Fork 0
mirror of https://github.com/ctruLua/ctruLua.git synced 2025-10-27 16:39:29 +00:00
Merge with master
This commit is contained in:
Reuh 2015-12-27 19:59:55 +01:00
commit 7359512ebe
4 changed files with 365 additions and 9 deletions

View file

@ -99,6 +99,13 @@ The `ctr.audio` module.
void load_audio_lib(lua_State *L);
void unload_audio_lib(lua_State *L);
/***
The `ctr.apt` module.
@table apt
@see ctr.apt
*/
void load_apt_lib(lua_State *L);
/***
Return whether or not the program should continue.
@function run
@ -142,6 +149,7 @@ struct { char *name; void (*load)(lua_State *L); void (*unload)(lua_State *L); }
{ "socket", load_socket_lib, NULL },
{ "cam", load_cam_lib, NULL },
{ "audio", load_audio_lib, unload_audio_lib },
{ "apt", load_apt_lib, NULL },
{ NULL, NULL }
};