New PHP5 APC - version 3.0.19, using PHP5 5.2.0-8+etch11,
[php5-apc.git] / apc_main.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_main.h,v 3.9.2.2 2008/05/11 18:57:00 rasmus Exp $ */
33
34 #ifndef APC_MAIN_H
35 #define APC_MAIN_H
36
37 /*
38  * This module provides the primary interface between PHP and APC.
39  */
40
41 extern int apc_module_init(int module_number TSRMLS_DC);
42 extern int apc_module_shutdown(TSRMLS_D);
43 extern int apc_process_init(int module_number TSRMLS_DC);
44 extern int apc_process_shutdown(TSRMLS_D);
45 extern int apc_request_init(TSRMLS_D);
46 extern int apc_request_shutdown(TSRMLS_D);
47
48 #endif
49
50 /*
51  * Local variables:
52  * tab-width: 4
53  * c-basic-offset: 4
54  * End:
55  * vim600: expandtab sw=4 ts=4 sts=4 fdm=marker
56  * vim<600: expandtab sw=4 ts=4 sts=4
57  */