summaryrefslogtreecommitdiff
path: root/main/php.h
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@php.net>2006-06-13 13:12:20 +0000
committerDmitry Stogov <dmitry@php.net>2006-06-13 13:12:20 +0000
commit943960c324597281c02c42ae2ead2c2d7ef01be7 (patch)
tree52a64885afab0efae220d8bd3eb2867b1022f8e7 /main/php.h
parent2cbde06400d2caf58d7f789b828f8d663980c8d2 (diff)
downloadphp-git-943960c324597281c02c42ae2ead2c2d7ef01be7.tar.gz
Added automatic module globals management
Diffstat (limited to 'main/php.h')
-rw-r--r--main/php.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/main/php.h b/main/php.h
index a0a475adbd..5c5b9131fb 100644
--- a/main/php.h
+++ b/main/php.h
@@ -363,13 +363,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 */
#include "main/php_output.h"