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

Added the ctr.cam library (untested but should work)

This commit is contained in:
Firew0lf 2015-10-22 16:13:14 +02:00
parent 4d56037289
commit a8d31de1e4
2 changed files with 710 additions and 2 deletions

View file

@ -84,7 +84,12 @@ The `ctr.socket` module.
*/
void load_socket_lib(lua_State *L);
//void load_cam_lib(lua_State *L);
/***
The `ctr.cam` module.
@table cam
@see ctr.cam
*/
void load_cam_lib(lua_State *L);
/***
Return whether or not the program should continue.
@ -127,7 +132,7 @@ struct { char *name; void (*load)(lua_State *L); void (*unload)(lua_State *L); }
{ "qtm", load_qtm_lib, NULL },
{ "cfgu", load_cfgu_lib, NULL },
{ "socket", load_socket_lib, NULL },
// { "cam", load_cam_lib, NULL },
{ "cam", load_cam_lib, NULL },
{ NULL, NULL }
};