|
Revision 1161, 0.7 KB
(checked in by moo, 7 months ago)
|
|
updated news, bump version
|
-
Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 | #ifndef __XCACHE_H |
|---|
| 2 | #define __XCACHE_H |
|---|
| 3 | #define XCACHE_NAME "XCache" |
|---|
| 4 | #ifndef XCACHE_VERSION |
|---|
| 5 | # define XCACHE_VERSION "3.0.1-dev" |
|---|
| 6 | #endif |
|---|
| 7 | #define XCACHE_AUTHOR "mOo" |
|---|
| 8 | #define XCACHE_COPYRIGHT "Copyright (c) 2005-2012" |
|---|
| 9 | #define XCACHE_URL "http://xcache.lighttpd.net" |
|---|
| 10 | #define XCACHE_WIKI_URL XCACHE_URL "/wiki" |
|---|
| 11 | |
|---|
| 12 | #include "php.h" |
|---|
| 13 | |
|---|
| 14 | #if defined(E_STRICT) || defined(E_DEPRECATED) |
|---|
| 15 | #define XCACHE_ERROR_CACHING |
|---|
| 16 | #endif |
|---|
| 17 | |
|---|
| 18 | #ifdef HAVE_CONFIG_H |
|---|
| 19 | #include <config.h> |
|---|
| 20 | #endif |
|---|
| 21 | #include "xcache/xc_shm.h" |
|---|
| 22 | #include "xcache/xc_lock.h" |
|---|
| 23 | #include "xcache/xc_compatibility.h" |
|---|
| 24 | |
|---|
| 25 | extern zend_module_entry xcache_module_entry; |
|---|
| 26 | #define phpext_xcache_ptr &xcache_module_entry |
|---|
| 27 | |
|---|
| 28 | extern zend_bool xc_test; |
|---|
| 29 | |
|---|
| 30 | #endif /* __XCACHE_H */ |
|---|