summaryrefslogtreecommitdiff
path: root/Zend/zend_API.h
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2016-03-02 17:50:55 +0300
committerDmitry Stogov <dmitry@zend.com>2016-03-02 17:50:55 +0300
commitc67c166f930b2f815a805a3376e9244794e20c31 (patch)
tree6ec75a15e3dd9c7e9cdb0e1ba06ffb038726a0b9 /Zend/zend_API.h
parent960b3755b3ca97f3ea2f98f65f1ac88f24d320ac (diff)
downloadphp-git-c67c166f930b2f815a805a3376e9244794e20c31.tar.gz
Removed zend_fcall_info.symbol_table
Diffstat (limited to 'Zend/zend_API.h')
-rw-r--r--Zend/zend_API.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/Zend/zend_API.h b/Zend/zend_API.h
index db4b9a8819..40c814f71d 100644
--- a/Zend/zend_API.h
+++ b/Zend/zend_API.h
@@ -45,7 +45,6 @@ typedef struct _zend_fcall_info {
size_t size;
HashTable *function_table;
zval function_name;
- zend_array *symbol_table;
zval *retval;
zval *params;
zend_object *object;
@@ -470,7 +469,10 @@ ZEND_API int add_property_zval_ex(zval *arg, const char *key, size_t key_len, zv
ZEND_API int call_user_function(HashTable *function_table, zval *object, zval *function_name, zval *retval_ptr, uint32_t param_count, zval params[]);
-ZEND_API int call_user_function_ex(HashTable *function_table, zval *object, zval *function_name, zval *retval_ptr, uint32_t param_count, zval params[], int no_separation, zend_array *symbol_table);
+ZEND_API int _call_user_function_ex(HashTable *function_table, zval *object, zval *function_name, zval *retval_ptr, uint32_t param_count, zval params[], int no_separation);
+
+#define call_user_function_ex(function_table, object, function_name, retval_ptr, param_count, params, no_separation, symbol_table) \
+ _call_user_function_ex(function_table, object, function_name, retval_ptr, param_count, params, no_separation)
ZEND_API extern const zend_fcall_info empty_fcall_info;
ZEND_API extern const zend_fcall_info_cache empty_fcall_info_cache;