11 lines
220 B
C
11 lines
220 B
C
|
#ifndef _LIGHTTPD_ACTIONS_LUA_H_
|
||
|
#define _LIGHTTPD_ACTIONS_LUA_H_
|
||
|
|
||
|
#include "actions.h"
|
||
|
#include <lua.h>
|
||
|
|
||
|
action* lua_get_action(lua_State *L, int ndx);
|
||
|
int lua_push_action(server *srv, lua_State *L, action *a);
|
||
|
|
||
|
#endif
|