summaryrefslogtreecommitdiff
path: root/Zend/zend_API.h
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2000-06-17 16:50:38 +0000
committerZeev Suraski <zeev@php.net>2000-06-17 16:50:38 +0000
commit3cda6a750ea3eb9d479f07343d9fe4fab127b68a (patch)
tree5f7d379665e1f27c2efb62167f6cc9ab5ad0b2c4 /Zend/zend_API.h
parentda662986592131d30d4813e178c72c1d9653e644 (diff)
downloadphp-git-3cda6a750ea3eb9d479f07343d9fe4fab127b68a.tar.gz
Allow the symbol_table to be passed to call_user_function_ex()
Diffstat (limited to 'Zend/zend_API.h')
-rw-r--r--Zend/zend_API.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_API.h b/Zend/zend_API.h
index 5412a4fe88..31b81f2572 100644
--- a/Zend/zend_API.h
+++ b/Zend/zend_API.h
@@ -178,7 +178,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_ptr, int param_count, zval *params[]);
-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 call_user_function_ex(HashTable *function_table, zval *object, zval *function_name, zval **retval_ptr_ptr, int param_count, zval **params[], int no_separation, HashTable *symbol_table);
ZEND_API int add_property_long(zval *arg, char *key, long l);
ZEND_API int add_property_unset(zval *arg, char *key);