summaryrefslogtreecommitdiff
path: root/Zend/zend_modules.h
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2017-07-01 18:39:02 +0200
committerAnatol Belski <ab@php.net>2017-07-01 18:39:02 +0200
commit46ef3e237c1c51a558b2f892ad526016614aff00 (patch)
treededcdf90bd2d17d99f043cde058fd0d2867b7794 /Zend/zend_modules.h
parent2304bc2aa262b22663532f37cd2a29b732560872 (diff)
parent667185a26441220d323b0d3f5517026dd49a1d92 (diff)
downloadphp-git-46ef3e237c1c51a558b2f892ad526016614aff00.tar.gz
Merge branch 'PHP-7.1'
* PHP-7.1: 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 2125255143..11a939ae6d 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