mirror of
https://github.com/php/php-src.git
synced 2025-08-18 15:08:55 +02:00
MFB: move empty_fcall_info* to const table
This commit is contained in:
parent
8a4e3981ed
commit
a99fad3b16
2 changed files with 4 additions and 4 deletions
|
@ -1556,8 +1556,8 @@ ZEND_API int add_property_zstrl_ex(zval *arg, char *key, uint key_len, zend_ucha
|
||||||
ZEND_API int call_user_function(HashTable *function_table, zval **object_pp, zval *function_name, zval *retval_ptr, zend_uint param_count, zval *params[] TSRMLS_DC);
|
ZEND_API int call_user_function(HashTable *function_table, zval **object_pp, zval *function_name, zval *retval_ptr, zend_uint param_count, zval *params[] TSRMLS_DC);
|
||||||
ZEND_API int call_user_function_ex(HashTable *function_table, zval **object_pp, zval *function_name, zval **retval_ptr_ptr, zend_uint param_count, zval **params[], int no_separation, HashTable *symbol_table TSRMLS_DC);
|
ZEND_API int call_user_function_ex(HashTable *function_table, zval **object_pp, zval *function_name, zval **retval_ptr_ptr, zend_uint param_count, zval **params[], int no_separation, HashTable *symbol_table TSRMLS_DC);
|
||||||
|
|
||||||
ZEND_API extern zend_fcall_info empty_fcall_info;
|
ZEND_API extern const zend_fcall_info empty_fcall_info;
|
||||||
ZEND_API extern zend_fcall_info_cache empty_fcall_info_cache;
|
ZEND_API extern const zend_fcall_info_cache empty_fcall_info_cache;
|
||||||
|
|
||||||
/** Build zend_call_info/cache from a zval*
|
/** Build zend_call_info/cache from a zval*
|
||||||
*
|
*
|
||||||
|
|
|
@ -40,8 +40,8 @@ ZEND_API void (*zend_execute)(zend_op_array *op_array TSRMLS_DC);
|
||||||
ZEND_API void (*zend_execute_internal)(zend_execute_data *execute_data_ptr, int return_value_used TSRMLS_DC);
|
ZEND_API void (*zend_execute_internal)(zend_execute_data *execute_data_ptr, int return_value_used TSRMLS_DC);
|
||||||
|
|
||||||
/* true globals */
|
/* true globals */
|
||||||
ZEND_API zend_fcall_info empty_fcall_info = { 0, NULL, NULL, NULL, NULL, 0, NULL, NULL, 0 };
|
ZEND_API const zend_fcall_info empty_fcall_info = { 0, NULL, NULL, NULL, NULL, 0, NULL, NULL, 0 };
|
||||||
ZEND_API zend_fcall_info_cache empty_fcall_info_cache = { 0, NULL, NULL, NULL, NULL };
|
ZEND_API const zend_fcall_info_cache empty_fcall_info_cache = { 0, NULL, NULL, NULL, NULL };
|
||||||
|
|
||||||
#ifdef ZEND_WIN32
|
#ifdef ZEND_WIN32
|
||||||
#include <process.h>
|
#include <process.h>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue