summaryrefslogtreecommitdiff
path: root/Zend/zend_API.h
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2015-05-05 16:19:51 +0300
committerDmitry Stogov <dmitry@zend.com>2015-05-05 16:19:51 +0300
commit70c86732cb14bad0b2539a54c16e8e845f740117 (patch)
tree102cc8c5265f03b4f0bbd28cd13f29a101893480 /Zend/zend_API.h
parent275afbacd11c2f4d0dac7d450ffdf500d5eab104 (diff)
downloadphp-git-70c86732cb14bad0b2539a54c16e8e845f740117.tar.gz
Use zend_string to represent pdo_column_data.name and avoid duplication.
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 e0860a45f4..f61091ae72 100644
--- a/Zend/zend_API.h
+++ b/Zend/zend_API.h
@@ -329,6 +329,7 @@ ZEND_API int zend_declare_class_constant_string(zend_class_entry *ce, const char
ZEND_API int zend_update_class_constants(zend_class_entry *class_type);
+ZEND_API void zend_update_property_ex(zend_class_entry *scope, zval *object, zend_string *name, zval *value);
ZEND_API void zend_update_property(zend_class_entry *scope, zval *object, const char *name, size_t name_length, zval *value);
ZEND_API void zend_update_property_null(zend_class_entry *scope, zval *object, const char *name, size_t name_length);
ZEND_API void zend_update_property_bool(zend_class_entry *scope, zval *object, const char *name, size_t name_length, zend_long value);