2006-05-09 10:58:38 +00:00
|
|
|
#ifndef __XCACHE_H
|
|
|
|
#define __XCACHE_H
|
|
|
|
#define XCACHE_NAME "XCache"
|
2012-06-24 03:16:05 +00:00
|
|
|
#ifndef XCACHE_VERSION
|
2013-10-16 02:19:10 +00:00
|
|
|
# define XCACHE_VERSION "3.1.1-dev"
|
2012-06-24 03:16:05 +00:00
|
|
|
#endif
|
2006-05-09 10:58:38 +00:00
|
|
|
#define XCACHE_AUTHOR "mOo"
|
2013-01-11 02:44:07 +00:00
|
|
|
#define XCACHE_COPYRIGHT "Copyright (c) 2005-2013"
|
2006-05-09 10:58:38 +00:00
|
|
|
#define XCACHE_URL "http://xcache.lighttpd.net"
|
2008-03-15 02:02:45 +00:00
|
|
|
#define XCACHE_WIKI_URL XCACHE_URL "/wiki"
|
2006-05-09 10:58:38 +00:00
|
|
|
|
2012-07-26 03:47:52 +00:00
|
|
|
#include "php.h"
|
|
|
|
|
|
|
|
#if defined(E_STRICT) || defined(E_DEPRECATED)
|
|
|
|
#define XCACHE_ERROR_CACHING
|
|
|
|
#endif
|
2006-05-09 10:58:38 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include <config.h>
|
|
|
|
#endif
|
2012-07-18 03:19:57 +00:00
|
|
|
#include "xcache/xc_shm.h"
|
2013-09-09 16:16:05 +00:00
|
|
|
#include "xcache/xc_mutex.h"
|
2012-07-18 07:52:35 +00:00
|
|
|
#include "xcache/xc_compatibility.h"
|
2006-05-09 10:58:38 +00:00
|
|
|
|
|
|
|
extern zend_module_entry xcache_module_entry;
|
|
|
|
#define phpext_xcache_ptr &xcache_module_entry
|
|
|
|
|
2012-07-25 03:14:09 +00:00
|
|
|
extern zend_bool xc_test;
|
|
|
|
|
2006-05-09 10:58:38 +00:00
|
|
|
#endif /* __XCACHE_H */
|