summaryrefslogtreecommitdiff
path: root/Zend/zend_API.h
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>1999-08-06 15:24:10 +0000
committerZeev Suraski <zeev@php.net>1999-08-06 15:24:10 +0000
commitf95edc016b090bfe6494d5cffdd37315b7bb9d7c (patch)
treea2c02db4ac41a45c96f66d79489dbaf0b95876d4 /Zend/zend_API.h
parent65ee58da41db12d1dfca573eb813af18e6787938 (diff)
downloadphp-git-f95edc016b090bfe6494d5cffdd37315b7bb9d7c.tar.gz
Introduce call_user_func_ex()
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 c8ba5e6715..2c0c69e831 100644
--- a/Zend/zend_API.h
+++ b/Zend/zend_API.h
@@ -112,6 +112,7 @@ ZEND_API int add_get_index_string(zval *arg, uint idx, char *str, void **dest, i
ZEND_API int add_get_index_stringl(zval *arg, uint idx, char *str, uint length, void **dest, int duplicate);
ZEND_API int call_user_function(HashTable *function_table, zval *object, zval *function_name, zval *retval, int param_count, zval *params[]);
+ZEND_API int call_user_function_ex(HashTable *function_table, zval *object, zval *function_name, zval *retval, int param_count, zval **params[], int no_separation);
ZEND_API int add_property_long(zval *arg, char *key, long l);