XCache is a fast, stable PHP opcode cacher that has been proven and is now running on production servers under high load.
https://xcache.lighttpd.net/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
578 B
16 lines
578 B
#ifndef XC_EXTENSION_H_9885D3A6DE7C469D13E34AF331E02BB8 |
|
#define XC_EXTENSION_H_9885D3A6DE7C469D13E34AF331E02BB8 |
|
|
|
#if _MSC_VER > 1000 |
|
#pragma once |
|
#endif /* _MSC_VER > 1000 */ |
|
|
|
#include "util/xc_stack.h" |
|
#include "zend_extensions.h" |
|
int xcache_zend_extension_add(zend_extension *new_extension, zend_bool prepend); |
|
int xcache_zend_extension_remove(zend_extension *extension); |
|
|
|
void xcache_llist_prepend(zend_llist *l, zend_llist_element *element); |
|
void xcache_llist_unlink(zend_llist *l, zend_llist_element *element); |
|
|
|
#endif /* XC_EXTENSION_H_9885D3A6DE7C469D13E34AF331E02BB8 */
|
|
|