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.
lighttpd2/include/lighttpd/value_lua.h

16 lines
380 B
C

15 years ago
#ifndef _LIGHTTPD_OPTIONS_LUA_H_
#define _LIGHTTPD_OPTIONS_LUA_H_
#include <lighttpd/base.h>
15 years ago
#include <lua.h>
/* converts the top of the stack into an value
15 years ago
* and pops the value
* returns NULL if it couldn't convert the value (still pops it)
*/
LI_API liValue* li_value_from_lua(liServer *srv, lua_State *L);
15 years ago
LI_API GString* li_lua_togstring(lua_State *L, int ndx);
15 years ago
#endif