|
Last change
on this file since 1051 was
1051,
checked in by moo, 11 months ago
|
|
refactor: move more cache stuffs to mod_cacher
|
-
Property svn:eol-style set to
native
|
|
File size:
712 bytes
|
| Rev | Line | |
|---|
| [1] | 1 | #ifndef __XCACHE_H |
|---|
| 2 | #define __XCACHE_H |
|---|
| 3 | #define XCACHE_NAME "XCache" |
|---|
| [923] | 4 | #ifndef XCACHE_VERSION |
|---|
| [1035] | 5 | # define XCACHE_VERSION "3.0.0-dev" |
|---|
| [923] | 6 | #endif |
|---|
| [1] | 7 | #define XCACHE_AUTHOR "mOo" |
|---|
| [883] | 8 | #define XCACHE_COPYRIGHT "Copyright (c) 2005-2012" |
|---|
| [1] | 9 | #define XCACHE_URL "http://xcache.lighttpd.net" |
|---|
| [547] | 10 | #define XCACHE_WIKI_URL XCACHE_URL "/wiki" |
|---|
| [1] | 11 | |
|---|
| [1051] | 12 | #include "php.h" |
|---|
| [1] | 13 | |
|---|
| [1051] | 14 | #if defined(E_STRICT) || defined(E_DEPRECATED) |
|---|
| 15 | #define XCACHE_ERROR_CACHING |
|---|
| 16 | #endif |
|---|
| 17 | |
|---|
| [1] | 18 | #ifdef HAVE_CONFIG_H |
|---|
| 19 | #include <config.h> |
|---|
| 20 | #endif |
|---|
| [987] | 21 | #include "xcache/xc_shm.h" |
|---|
| 22 | #include "xcache/xc_lock.h" |
|---|
| [991] | 23 | #include "xcache/xc_compatibility.h" |
|---|
| [1] | 24 | |
|---|
| 25 | extern zend_module_entry xcache_module_entry; |
|---|
| 26 | #define phpext_xcache_ptr &xcache_module_entry |
|---|
| 27 | |
|---|
| [1040] | 28 | extern zend_bool xc_test; |
|---|
| 29 | |
|---|
| [1] | 30 | #endif /* __XCACHE_H */ |
|---|
Note: See
TracBrowser
for help on using the repository browser.