~ubuntu-branches/ubuntu/vivid/php-apcu/vivid

« back to all changes in this revision

Viewing changes to apcu-4.0.4/php_apc.h

  • Committer: Package Import Robot
  • Author(s): Ondřej Surý
  • Date: 2014-06-24 10:52:52 UTC
  • mfrom: (7.1.4 sid)
  • Revision ID: package-import@ubuntu.com-20140624105252-vsqs1r4og4ykucqg
Tags: 4.0.6-1
* New upstream version 4.0.6
* Remove PHP 5.6 support patch - merged upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
  +----------------------------------------------------------------------+
3
 
  | APC                                                                  |
4
 
  +----------------------------------------------------------------------+
5
 
  | Copyright (c) 2006-2011 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
 
  +----------------------------------------------------------------------+
19
 
 
20
 
   This software was contributed to PHP by Community Connect Inc. in 2002
21
 
   and revised in 2005 by Yahoo! Inc. to add support for PHP 5.1.
22
 
   Future revisions and derivatives of this source code must acknowledge
23
 
   Community Connect Inc. as the original contributor of this module by
24
 
   leaving this note intact in the source code.
25
 
 
26
 
   All other licensing and usage conditions are those of the PHP Group.
27
 
 
28
 
 */
29
 
 
30
 
/* $Id: php_apc.h 328953 2013-01-03 02:19:19Z rasmus $ */
31
 
 
32
 
#ifndef PHP_APC_H
33
 
#define PHP_APC_H
34
 
 
35
 
#include "apc_php.h"
36
 
#include "apc_globals.h"
37
 
 
38
 
#define PHP_APCU_VERSION "4.0.4"
39
 
#define PHP_APCU_EXTNAME "apcu"
40
 
 
41
 
extern zend_module_entry apcu_module_entry;
42
 
#define apcu_module_ptr &apcu_module_entry
43
 
 
44
 
#define phpext_apcu_ptr apcu_module_ptr
45
 
 
46
 
#endif /* PHP_APC_H */
47
 
 
48
 
/*
49
 
 * Local variables:
50
 
 * tab-width: 4
51
 
 * c-basic-offset: 4
52
 
 * End:
53
 
 * vim>600: expandtab sw=4 ts=4 sts=4 fdm=marker
54
 
 * vim<600: expandtab sw=4 ts=4 sts=4
55
 
 */