Annotation of embedaddon/php/ext/reflection/php_reflection.h, revision 1.1.1.1
1.1 misho 1: /*
2: +----------------------------------------------------------------------+
3: | PHP Version 5 |
4: +----------------------------------------------------------------------+
5: | Copyright (c) 1997-2012 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: George Schlossnagle <george@omniti.com> |
16: +----------------------------------------------------------------------+
17: */
18:
19: /* $Id: php_reflection.h 321634 2012-01-01 13:15:04Z felipe $ */
20:
21: #ifndef PHP_REFLECTION_H
22: #define PHP_REFLECTION_H
23:
24: #include "php.h"
25:
26: extern zend_module_entry reflection_module_entry;
27: #define phpext_reflection_ptr &reflection_module_entry
28:
29: BEGIN_EXTERN_C()
30:
31: /* Class entry pointers */
32: extern PHPAPI zend_class_entry *reflector_ptr;
33: extern PHPAPI zend_class_entry *reflection_exception_ptr;
34: extern PHPAPI zend_class_entry *reflection_ptr;
35: extern PHPAPI zend_class_entry *reflection_function_abstract_ptr;
36: extern PHPAPI zend_class_entry *reflection_function_ptr;
37: extern PHPAPI zend_class_entry *reflection_parameter_ptr;
38: extern PHPAPI zend_class_entry *reflection_class_ptr;
39: extern PHPAPI zend_class_entry *reflection_object_ptr;
40: extern PHPAPI zend_class_entry *reflection_method_ptr;
41: extern PHPAPI zend_class_entry *reflection_property_ptr;
42: extern PHPAPI zend_class_entry *reflection_extension_ptr;
43:
44: PHPAPI void zend_reflection_class_factory(zend_class_entry *ce, zval *object TSRMLS_DC);
45:
46: END_EXTERN_C()
47:
48: #endif /* PHP_REFLECTION_H */
49:
50: /*
51: * Local variables:
52: * tab-width: 4
53: * c-basic-offset: 4
54: * indent-tabs-mode: t
55: * End:
56: */
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>