diff options
author | Anatol Belski <ab@php.net> | 2014-12-16 10:15:02 +0100 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-12-16 10:15:02 +0100 |
commit | 9e4310eeebf40e8fe3ab2f85203ea8cb1545b685 (patch) | |
tree | e9d4617efc346bd767e8d253d7ed9878879223a1 /Zend/zend_ini.h | |
parent | eb629b70da620fcdac6aca472c1450824ded15de (diff) | |
download | php-git-9e4310eeebf40e8fe3ab2f85203ea8cb1545b685.tar.gz |
reworked ini dtor
Diffstat (limited to 'Zend/zend_ini.h')
-rw-r--r-- | Zend/zend_ini.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Zend/zend_ini.h b/Zend/zend_ini.h index 81a2ee3ef3..5030819d6b 100644 --- a/Zend/zend_ini.h +++ b/Zend/zend_ini.h @@ -62,9 +62,10 @@ struct _zend_ini_entry { BEGIN_EXTERN_C() ZEND_API int zend_ini_startup(void); -ZEND_API int zend_ini_shutdown(HashTable *ini_directives); +ZEND_API int zend_ini_shutdown(void); ZEND_API int zend_ini_global_shutdown(void); ZEND_API int zend_ini_deactivate(void); +ZEND_API void zend_ini_dtor(HashTable *ini_directives); ZEND_API int zend_copy_ini_directives(void); |