diff options
author | Dmitry Stogov <dmitry@php.net> | 2006-06-15 14:06:35 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2006-06-15 14:06:35 +0000 |
commit | 60328ea7c3f72df023373c62cf9bb1ca79ca3437 (patch) | |
tree | dfb96442c12cef7a038927190fe4012567c556d2 /main/php.h | |
parent | ada4e506a7b04bf6e89d5266a12d7e251fe68f20 (diff) | |
download | php-git-60328ea7c3f72df023373c62cf9bb1ca79ca3437.tar.gz |
Added automatic module globals management
Diffstat (limited to 'main/php.h')
-rw-r--r-- | main/php.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/main/php.h b/main/php.h index e8e81780da..4a26408cfc 100644 --- a/main/php.h +++ b/main/php.h @@ -367,12 +367,18 @@ END_EXTERN_C() #define PHP_RINIT ZEND_MODULE_ACTIVATE_N #define PHP_RSHUTDOWN ZEND_MODULE_DEACTIVATE_N #define PHP_MINFO ZEND_MODULE_INFO_N +#define PHP_GINIT ZEND_GINIT +#define PHP_GSHUTDOWN ZEND_GSHUTDOWN #define PHP_MINIT_FUNCTION ZEND_MODULE_STARTUP_D #define PHP_MSHUTDOWN_FUNCTION ZEND_MODULE_SHUTDOWN_D #define PHP_RINIT_FUNCTION ZEND_MODULE_ACTIVATE_D #define PHP_RSHUTDOWN_FUNCTION ZEND_MODULE_DEACTIVATE_D #define PHP_MINFO_FUNCTION ZEND_MODULE_INFO_D +#define PHP_GINIT_FUNCTION ZEND_GINIT_FUNCTION +#define PHP_GSHUTDOWN_FUNCTION ZEND_GSHUTDOWN_FUNCTION + +#define PHP_MODULE_GLOBALS ZEND_MODULE_GLOBALS /* Output support */ |