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.
11 lines
226 B
C
11 lines
226 B
C
15 years ago
|
#ifndef _LIGHTTPD_ACTIONS_LUA_H_
|
||
|
#define _LIGHTTPD_ACTIONS_LUA_H_
|
||
|
|
||
15 years ago
|
#include <lighttpd/base.h>
|
||
15 years ago
|
#include <lua.h>
|
||
|
|
||
|
action* lua_get_action(lua_State *L, int ndx);
|
||
|
int lua_push_action(server *srv, lua_State *L, action *a);
|
||
|
|
||
|
#endif
|