diff options
author | Zeev Suraski <zeev@php.net> | 2001-07-27 10:10:39 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2001-07-27 10:10:39 +0000 |
commit | 2c254ba762d9392a732d5793b5b193ee6e395f1c (patch) | |
tree | 1b3d5bd700222f3bb7387b698be9647525d33573 /Zend/zend_ini.h | |
parent | 736b4ae43d3f37fda450f6fcd67286a3bfed4fb6 (diff) | |
download | php-git-2c254ba762d9392a732d5793b5b193ee6e395f1c.tar.gz |
Get rid of ELS_*(), and use TSRMLS_*() instead.
This patch is *bound* to break some files, as I must have had typos somewhere.
If you use any uncommon extension, please try to build it...
Diffstat (limited to 'Zend/zend_ini.h')
-rw-r--r-- | Zend/zend_ini.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Zend/zend_ini.h b/Zend/zend_ini.h index d6a8acb859..a6545d2d42 100644 --- a/Zend/zend_ini.h +++ b/Zend/zend_ini.h @@ -82,17 +82,17 @@ struct _zend_ini_entry { }; -ZEND_API int zend_ini_startup(ELS_D); -ZEND_API int zend_ini_shutdown(ELS_D); -ZEND_API int zend_ini_deactivate(ELS_D); +ZEND_API int zend_ini_startup(TSRMLS_D); +ZEND_API int zend_ini_shutdown(TSRMLS_D); +ZEND_API int zend_ini_deactivate(TSRMLS_D); -ZEND_API int zend_copy_ini_directives(ELS_D); +ZEND_API int zend_copy_ini_directives(TSRMLS_D); -ZEND_API void zend_ini_sort_entries(ELS_D); +ZEND_API void zend_ini_sort_entries(TSRMLS_D); ZEND_API int zend_register_ini_entries(zend_ini_entry *ini_entry, int module_number); ZEND_API void zend_unregister_ini_entries(int module_number); -ZEND_API void zend_ini_refresh_caches(int stage ELS_DC); +ZEND_API void zend_ini_refresh_caches(int stage TSRMLS_DC); ZEND_API int zend_alter_ini_entry(char *name, uint name_length, char *new_value, uint new_value_length, int modify_type, int stage); ZEND_API int zend_restore_ini_entry(char *name, uint name_length, int stage); ZEND_API void display_ini_entries(zend_module_entry *module); |