1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-07 04:02:58 +03:00

CodeWarrior workaround for lua_dbd

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1431236 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Daniel Gruno
2013-01-10 09:47:30 +00:00
parent fdce7c3307
commit e582addb58
2 changed files with 31 additions and 12 deletions

View File

@@ -61,16 +61,5 @@ AP_LUA_DECLARE(int) lua_db_prepare(lua_State* L);
AP_LUA_DECLARE(int) lua_db_prepared(lua_State* L);
AP_LUA_DECLARE(int) lua_db_acquire(lua_State* L);
static const luaL_reg lua_db_methods[] =
{
{ "escape", lua_db_escape },
{ "close", lua_db_close },
{ "select", lua_db_select },
{ "query", lua_db_query },
{ "active", lua_db_active },
{ "prepare", lua_db_prepare },
{ "prepared", lua_db_prepared },
{ 0, 0 }
};
#endif /* !_LUA_DBD_H_ */