1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-05 16:55:50 +03:00

Rename all files in mod_lua to have a lua_ prefix, as things like 'config.h' are way to generic and will often conflict with other include files.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@728508 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Paul Querna
2008-12-21 21:27:01 +00:00
parent afcdc6d85c
commit 3948867f51
11 changed files with 15 additions and 16 deletions

8
modules/lua/lua_apr.h Normal file
View File

@@ -0,0 +1,8 @@
#ifndef _LUA_APR_H_
#define _LUA_APR_H_
int apr_lua_init(lua_State *L, apr_pool_t *p);
apr_table_t* check_apr_table(lua_State* L, int index);
void apl_push_apr_table(lua_State* L, const char *name, apr_table_t *t);
#endif /* !_LUA_APR_H_ */