You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
441 B
C
13 lines
441 B
C
#ifndef _LIGHTTPD_CONFIG_LUA_H_
|
|
#define _LIGHTTPD_CONFIG_LUA_H_
|
|
|
|
#include <lighttpd/base.h>
|
|
#include <lua.h>
|
|
|
|
LI_API gboolean li_config_lua_load(liLuaState *LL, liServer *srv, liWorker *wrk, const gchar *filename, liAction **pact, gboolean allow_setup, liValue *args);
|
|
|
|
LI_API void li_lua_push_action_table(liServer *srv, liWorker *wrk, lua_State *L);
|
|
LI_API void li_lua_push_setup_table(liServer *srv, liWorker *wrk, lua_State *L);
|
|
|
|
#endif
|