summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjan <jan@152afb58-edef-0310-8abb-c4023f1b3aa9>2005-07-17 08:27:44 +0000
committerjan <jan@152afb58-edef-0310-8abb-c4023f1b3aa9>2005-07-17 08:27:44 +0000
commit6c62bc7371331f764bd1331f36521e984897632f (patch)
treece7909b461342a5d8f05a2f6ea87e3aaad0c3513
parenta9389df2231137d36fc520043796234df3adccb5 (diff)
downloadlighttpd-6c62bc7371331f764bd1331f36521e984897632f.tar.gz
forgot to add it
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.3.x@463 152afb58-edef-0310-8abb-c4023f1b3aa9
-rw-r--r--src/mod_cml_funcs.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/mod_cml_funcs.h b/src/mod_cml_funcs.h
new file mode 100644
index 00000000..f318d40e
--- /dev/null
+++ b/src/mod_cml_funcs.h
@@ -0,0 +1,15 @@
+#ifndef _MOD_CML_FUNCS_H_
+#define _MOD_CML_FUNCS_H_
+
+#include "config.h"
+
+#ifdef HAVE_LUA_H
+#include <lua.h>
+
+int f_crypto_md5(lua_State *L);
+int f_file_mtime(lua_State *L);
+int f_memcache_exists(lua_State *L);
+int f_memcache_get_string(lua_State *L);
+int f_memcache_get_long(lua_State *L);
+#endif
+#endif