summaryrefslogtreecommitdiff
path: root/Zend/zend_modules.h
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2017-07-01 18:38:18 +0200
committerAnatol Belski <ab@php.net>2017-07-01 18:38:18 +0200
commit667185a26441220d323b0d3f5517026dd49a1d92 (patch)
tree35cf5fb758ac370a193fcab3495b0840084c9af6 /Zend/zend_modules.h
parentaf7bfc71fd8ac2c2a4135b7805370fae2b08533f (diff)
parentc71b773a626d2895983bda0b5eed137c79b3c93a (diff)
downloadphp-git-667185a26441220d323b0d3f5517026dd49a1d92.tar.gz
Merge branch 'PHP-7.0' into PHP-7.1
* PHP-7.0: fix C++ compat
Diffstat (limited to 'Zend/zend_modules.h')
-rw-r--r--Zend/zend_modules.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Zend/zend_modules.h b/Zend/zend_modules.h
index 8878b780b3..1893aa0afe 100644
--- a/Zend/zend_modules.h
+++ b/Zend/zend_modules.h
@@ -122,11 +122,13 @@ struct _zend_module_dep {
unsigned char type; /* dependency type */
};
+BEGIN_EXTERN_C()
extern ZEND_API HashTable module_registry;
void module_destructor(zend_module_entry *module);
int module_registry_request_startup(zend_module_entry *module);
int module_registry_unload_temp(const zend_module_entry *module);
+END_EXTERN_C()
#endif