mirror of
https://github.com/ctruLua/ctruLua.git
synced 2025-10-27 16:39:29 +00:00
Merge branch 'master' of https://github.com/ctruLua/ctruLua
Merge with master
This commit is contained in:
commit
7359512ebe
4 changed files with 365 additions and 9 deletions
|
|
@ -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 }
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue