2019-12-28 12:16:32 +01:00
|
|
|
#include "api.h"
|
|
|
|
|
|
|
|
|
|
|
|
int luaopen_system(lua_State *L);
|
|
|
|
int luaopen_renderer(lua_State *L);
|
2021-06-02 21:27:00 +02:00
|
|
|
int luaopen_regex(lua_State *L);
|
2022-01-12 00:32:45 +01:00
|
|
|
// int luaopen_process(lua_State *L);
|
2019-12-28 12:16:32 +01:00
|
|
|
|
|
|
|
static const luaL_Reg libs[] = {
|
|
|
|
{ "system", luaopen_system },
|
|
|
|
{ "renderer", luaopen_renderer },
|
2021-06-02 21:27:00 +02:00
|
|
|
{ "regex", luaopen_regex },
|
2022-01-12 00:32:45 +01:00
|
|
|
// { "process", luaopen_process },
|
2019-12-28 12:16:32 +01:00
|
|
|
{ NULL, NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
void api_load_libs(lua_State *L) {
|
2021-09-11 04:22:30 +02:00
|
|
|
for (int i = 0; libs[i].name; i++)
|
2019-12-28 12:16:32 +01:00
|
|
|
luaL_requiref(L, libs[i].name, libs[i].func, 1);
|
|
|
|
}
|
2022-01-12 00:32:45 +01:00
|
|
|
|