2005-12-01 05:53:20 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
2014-09-20 00:33:14 +08:00
|
|
|
| PHP Version 7 |
|
2005-12-01 05:53:20 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2017-01-05 01:23:42 +08:00
|
|
|
| Copyright (c) 1997-2017 The PHP Group |
|
2005-12-01 05:53:20 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2006-01-01 20:51:34 +08:00
|
|
|
| This source file is subject to version 3.01 of the PHP license, |
|
2005-12-01 05:53:20 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
|
|
|
| available through the world-wide-web at the following url: |
|
2006-01-01 20:51:34 +08:00
|
|
|
| http://www.php.net/license/3_01.txt |
|
2005-12-01 05:53:20 +08:00
|
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
| license@php.net so we can mail you a copy immediately. |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Authors: George Schlossnagle <george@omniti.com> |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
#ifndef PHP_REFLECTION_H
|
|
|
|
#define PHP_REFLECTION_H
|
|
|
|
|
|
|
|
#include "php.h"
|
|
|
|
|
|
|
|
extern zend_module_entry reflection_module_entry;
|
|
|
|
#define phpext_reflection_ptr &reflection_module_entry
|
|
|
|
|
2015-03-24 04:30:22 +08:00
|
|
|
#define PHP_REFLECTION_VERSION PHP_VERSION
|
|
|
|
|
2005-12-01 05:53:20 +08:00
|
|
|
BEGIN_EXTERN_C()
|
|
|
|
|
|
|
|
/* Class entry pointers */
|
|
|
|
extern PHPAPI zend_class_entry *reflector_ptr;
|
|
|
|
extern PHPAPI zend_class_entry *reflection_exception_ptr;
|
|
|
|
extern PHPAPI zend_class_entry *reflection_ptr;
|
2006-06-10 08:40:57 +08:00
|
|
|
extern PHPAPI zend_class_entry *reflection_function_abstract_ptr;
|
2005-12-01 05:53:20 +08:00
|
|
|
extern PHPAPI zend_class_entry *reflection_function_ptr;
|
|
|
|
extern PHPAPI zend_class_entry *reflection_parameter_ptr;
|
2015-06-08 14:32:18 +08:00
|
|
|
extern PHPAPI zend_class_entry *reflection_type_ptr;
|
2016-08-10 02:54:06 +08:00
|
|
|
extern PHPAPI zend_class_entry *reflection_named_type_ptr;
|
2005-12-01 05:53:20 +08:00
|
|
|
extern PHPAPI zend_class_entry *reflection_class_ptr;
|
|
|
|
extern PHPAPI zend_class_entry *reflection_object_ptr;
|
|
|
|
extern PHPAPI zend_class_entry *reflection_method_ptr;
|
|
|
|
extern PHPAPI zend_class_entry *reflection_property_ptr;
|
|
|
|
extern PHPAPI zend_class_entry *reflection_extension_ptr;
|
2010-03-31 06:35:23 +08:00
|
|
|
extern PHPAPI zend_class_entry *reflection_zend_extension_ptr;
|
2005-12-01 05:53:20 +08:00
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
PHPAPI void zend_reflection_class_factory(zend_class_entry *ce, zval *object);
|
2015-01-03 17:22:58 +08:00
|
|
|
|
2005-12-01 05:53:20 +08:00
|
|
|
END_EXTERN_C()
|
|
|
|
|
|
|
|
#endif /* PHP_REFLECTION_H */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
|
|
|
* indent-tabs-mode: t
|
|
|
|
* End:
|
|
|
|
*/
|