2
0
Fork 0
lighttpd2/include/lighttpd/actions_lua.h

14 lines
355 B
C
Raw Normal View History

#ifndef _LIGHTTPD_ACTIONS_LUA_H_
#define _LIGHTTPD_ACTIONS_LUA_H_
#include <lighttpd/base.h>
#include <lua.h>
LI_API liAction* li_lua_get_action(lua_State *L, int ndx);
LI_API int li_lua_push_action(liServer *srv, lua_State *L, liAction *a);
/* create new action from lua function */
LI_API liAction* li_lua_make_action(lua_State *L, int ndx);
#endif