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:
parent
4d56037289
commit
a8d31de1e4
2 changed files with 710 additions and 2 deletions
|
|
@ -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 }
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue