2008-07-24 11:25:40 +00:00
|
|
|
#ifndef _LIGHTTPD_ACTIONS_LUA_H_
|
|
|
|
#define _LIGHTTPD_ACTIONS_LUA_H_
|
|
|
|
|
2008-11-16 20:33:53 +00:00
|
|
|
#include <lighttpd/base.h>
|
2008-07-24 11:25:40 +00:00
|
|
|
#include <lua.h>
|
|
|
|
|
2009-10-09 13:38:12 +00:00
|
|
|
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);
|
2009-09-13 15:54:16 +00:00
|
|
|
|
|
|
|
/* create new action from lua function */
|
2009-10-09 13:38:12 +00:00
|
|
|
LI_API liAction* li_lua_make_action(lua_State *L, int ndx);
|
2008-07-24 11:25:40 +00:00
|
|
|
|
|
|
|
#endif
|