diff options
author | krakjoe <joe.watkins@live.co.uk> | 2013-11-17 22:39:31 +0000 |
---|---|---|
committer | krakjoe <joe.watkins@live.co.uk> | 2013-11-20 16:24:22 +0000 |
commit | 1a1e83a5d9a8c5cd30465ad83e92821e1cbf231c (patch) | |
tree | 4bd6bcf8a3003ca69b1eeefa02d45f7c87ec49b3 /Zend/zend_API.c | |
parent | 8c05e861d659f912d95f1720e985632757c5057b (diff) | |
download | php-git-1a1e83a5d9a8c5cd30465ad83e92821e1cbf231c.tar.gz |
export more Zend API
Diffstat (limited to 'Zend/zend_API.c')
-rw-r--r-- | Zend/zend_API.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/zend_API.c b/Zend/zend_API.c index 5fa7fb908e..56b1fda24b 100644 --- a/Zend/zend_API.c +++ b/Zend/zend_API.c @@ -2381,7 +2381,7 @@ void module_destructor(zend_module_entry *module) /* {{{ */ } /* }}} */ -void zend_activate_modules(TSRMLS_D) /* {{{ */ +ZEND_API void zend_activate_modules(TSRMLS_D) /* {{{ */ { zend_module_entry **p = module_request_startup_handlers; @@ -2410,7 +2410,7 @@ int module_registry_cleanup(zend_module_entry *module TSRMLS_DC) /* {{{ */ } /* }}} */ -void zend_deactivate_modules(TSRMLS_D) /* {{{ */ +ZEND_API void zend_deactivate_modules(TSRMLS_D) /* {{{ */ { EG(opline_ptr) = NULL; /* we're no longer executing anything */ @@ -2457,7 +2457,7 @@ static int exec_done_cb(zend_module_entry *module TSRMLS_DC) /* {{{ */ } /* }}} */ -void zend_post_deactivate_modules(TSRMLS_D) /* {{{ */ +ZEND_API void zend_post_deactivate_modules(TSRMLS_D) /* {{{ */ { if (EG(full_tables_cleanup)) { zend_hash_apply(&module_registry, (apply_func_t) exec_done_cb TSRMLS_CC); |