New PHP5 APC - version 3.0.18, using PHP5 5.2.0-8+etch10,
[php5-apc.git] / apc_php.h
1 /*
2   +----------------------------------------------------------------------+
3   | APC                                                                  |
4   +----------------------------------------------------------------------+
5   | Copyright (c) 2006 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 2006/11/16 20:24:48 gopalv 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 > 20050922
51 #define ZEND_ENGINE_2_2
52 #endif
53 #if ZEND_MODULE_API_NO > 20050921
54 #define ZEND_ENGINE_2_1
55 #endif
56 #ifdef ZEND_ENGINE_2_1
57 #include "zend_vm.h"
58 #endif
59
60 #include "rfc1867.h"
61
62 #endif
63
64 /*
65  * Local variables:
66  * tab-width: 4
67  * c-basic-offset: 4
68  * End:
69  * vim600: expandtab sw=4 ts=4 sts=4 fdm=marker
70  * vim<600: expandtab sw=4 ts=4 sts=4
71  */