php_reflection.h 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 7 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2018 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. #ifndef PHP_REFLECTION_H
  19. #define PHP_REFLECTION_H
  20. #include "php.h"
  21. extern zend_module_entry reflection_module_entry;
  22. #define phpext_reflection_ptr &reflection_module_entry
  23. #define PHP_REFLECTION_VERSION PHP_VERSION
  24. BEGIN_EXTERN_C()
  25. /* Class entry pointers */
  26. extern PHPAPI zend_class_entry *reflector_ptr;
  27. extern PHPAPI zend_class_entry *reflection_exception_ptr;
  28. extern PHPAPI zend_class_entry *reflection_ptr;
  29. extern PHPAPI zend_class_entry *reflection_function_abstract_ptr;
  30. extern PHPAPI zend_class_entry *reflection_function_ptr;
  31. extern PHPAPI zend_class_entry *reflection_parameter_ptr;
  32. extern PHPAPI zend_class_entry *reflection_type_ptr;
  33. extern PHPAPI zend_class_entry *reflection_named_type_ptr;
  34. extern PHPAPI zend_class_entry *reflection_class_ptr;
  35. extern PHPAPI zend_class_entry *reflection_object_ptr;
  36. extern PHPAPI zend_class_entry *reflection_method_ptr;
  37. extern PHPAPI zend_class_entry *reflection_property_ptr;
  38. extern PHPAPI zend_class_entry *reflection_extension_ptr;
  39. extern PHPAPI zend_class_entry *reflection_zend_extension_ptr;
  40. PHPAPI void zend_reflection_class_factory(zend_class_entry *ce, zval *object);
  41. END_EXTERN_C()
  42. #endif /* PHP_REFLECTION_H */
  43. /*
  44. * Local variables:
  45. * tab-width: 4
  46. * c-basic-offset: 4
  47. * indent-tabs-mode: t
  48. * End:
  49. */