New PHP5 APC - version 3.0.19, using PHP5 5.2.0-8+etch11,
[php5-apc.git] / apc_php.h
1 /*
2   +----------------------------------------------------------------------+
3   | APC                                                                  |
4   +----------------------------------------------------------------------+
5   | Copyright (c) 2008 The PHP Group                                     |
6   +----------------------------------------------------------------------+
7   | This source file is subject to version 3.01 of the PHP license,      |
8   | that is bundled with this package in the file LICENSE, and is        |
9   | available through the world-wide-web at the following url:           |
10   | http://www.php.net/license/3_01.txt                                  |
11   | If you did not receive a copy of the PHP license and are unable to   |
12   | obtain it through the world-wide-web, please send a note to          |
13   | license@php.net so we can mail you a copy immediately.               |
14   +----------------------------------------------------------------------+
15   | Authors: Daniel Cowgill <dcowgill@communityconnect.com>              |
16   |          George Schlossnagle <george@omniti.com>                     |
17   |          Rasmus Lerdorf <rasmus@php.net>                             |
18   |          Arun C. Murthy <arunc@yahoo-inc.com>                        |
19   |          Gopal Vijayaraghavan <gopalv@yahoo-inc.com>                 |
20   +----------------------------------------------------------------------+
21
22    This software was contributed to PHP by Community Connect Inc. in 2002
23    and revised in 2005 by Yahoo! Inc. to add support for PHP 5.1.
24    Future revisions and derivatives of this source code must acknowledge
25    Community Connect Inc. as the original contributor of this module by
26    leaving this note intact in the source code.
27
28    All other licensing and usage conditions are those of the PHP Group.
29
30  */
31
32 /* $Id: apc_php.h,v 3.10.2.2 2008/05/11 18:57:00 rasmus Exp $ */
33
34 #ifndef APC_PHP_H
35 #define APC_PHP_H
36
37 /*
38  * The purpose of this header file is to include all PHP and Zend headers that
39  * are typically needed elsewhere in APC. This makes it easy to insure that
40  * all required headers are available.
41  */
42
43 #include "php.h"
44 #include "zend.h"
45 #include "zend_API.h"
46 #include "zend_compile.h"
47 #include "zend_hash.h"
48 #include "zend_extensions.h"
49
50 #if ZEND_MODULE_API_NO > 20060613
51 #define ZEND_ENGINE_2_3
52 #endif
53 #if ZEND_MODULE_API_NO > 20050922
54 #define ZEND_ENGINE_2_2
55 #endif
56 #if ZEND_MODULE_API_NO > 20050921
57 #define ZEND_ENGINE_2_1
58 #endif
59 #ifdef ZEND_ENGINE_2_1
60 #include "zend_vm.h"
61 #endif
62
63 #include "rfc1867.h"
64
65 #endif
66
67 /*
68  * Local variables:
69  * tab-width: 4
70  * c-basic-offset: 4
71  * End:
72  * vim600: expandtab sw=4 ts=4 sts=4 fdm=marker
73  * vim<600: expandtab sw=4 ts=4 sts=4
74  */