summaryrefslogtreecommitdiff
path: root/Zend/zend_API.h
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2005-04-19 22:04:59 +0000
committerMarcus Boerger <helly@php.net>2005-04-19 22:04:59 +0000
commit67a226d910f4a154f48f6edccd46e5537608cbe9 (patch)
treea4497e70ca95c71301e7a77ba6068ade64d93b51 /Zend/zend_API.h
parentb8ac8eeca6767b4603d019d97f00d489161fca96 (diff)
downloadphp-git-67a226d910f4a154f48f6edccd46e5537608cbe9.tar.gz
- Add ReflectionProperty::getDocComment()
Diffstat (limited to 'Zend/zend_API.h')
-rw-r--r--Zend/zend_API.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_API.h b/Zend/zend_API.h
index 52e2fb95b0..131dc9826a 100644
--- a/Zend/zend_API.h
+++ b/Zend/zend_API.h
@@ -189,6 +189,7 @@ ZEND_API zend_bool zend_make_callable(zval *callable, char **callable_name TSRML
ZEND_API char *zend_get_module_version(char *module_name);
ZEND_API int zend_get_module_started(char *module_name);
ZEND_API int zend_declare_property(zend_class_entry *ce, char *name, int name_length, zval *property, int access_type TSRMLS_DC);
+ZEND_API int zend_declare_property_ex(zend_class_entry *ce, char *name, int name_length, zval *property, int access_type, char *doc_comment, int doc_comment_len TSRMLS_DC);
ZEND_API int zend_declare_property_null(zend_class_entry *ce, char *name, int name_length, int access_type TSRMLS_DC);
ZEND_API int zend_declare_property_bool(zend_class_entry *ce, char *name, int name_length, long value, int access_type TSRMLS_DC);
ZEND_API int zend_declare_property_long(zend_class_entry *ce, char *name, int name_length, long value, int access_type TSRMLS_DC);