summaryrefslogtreecommitdiff
path: root/Zend/zend_API.h
diff options
context:
space:
mode:
authorAndrei Zmievski <andrei@php.net>2000-02-01 23:12:48 +0000
committerAndrei Zmievski <andrei@php.net>2000-02-01 23:12:48 +0000
commitb995d2cc2f9bb0ecd8ecedcfb7dd476479f1adfe (patch)
tree80eefa3d3d7d17041141e1a8196fb1d19c2378b3 /Zend/zend_API.h
parent83a027817160ec6d72adee13ca845d4306e837b6 (diff)
downloadphp-git-b995d2cc2f9bb0ecd8ecedcfb7dd476479f1adfe.tar.gz
Added add_property_unset() and add_property_bool().
Diffstat (limited to 'Zend/zend_API.h')
-rw-r--r--Zend/zend_API.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Zend/zend_API.h b/Zend/zend_API.h
index ff357ca153..019361b322 100644
--- a/Zend/zend_API.h
+++ b/Zend/zend_API.h
@@ -132,6 +132,8 @@ ZEND_API int call_user_function(HashTable *function_table, zval *object, zval *f
ZEND_API int call_user_function_ex(HashTable *function_table, zval *object, zval *function_name, zval **retval_ptr_ptr, int param_count, zval **params[], int no_separation);
ZEND_API int add_property_long(zval *arg, char *key, long l);
+ZEND_API int add_property_unset(zval *arg, char *key);
+ZEND_API int add_property_bool(zval *arg, char *key, int b);
ZEND_API int add_property_resource(zval *arg, char *key, long r);
ZEND_API int add_property_double(zval *arg, char *key, double d);
ZEND_API int add_property_string(zval *arg, char *key, char *str, int duplicate);