summaryrefslogtreecommitdiff
path: root/Zend/zend_API.h
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2003-05-04 22:49:31 +0000
committerMarcus Boerger <helly@php.net>2003-05-04 22:49:31 +0000
commit29a3586f7b2f41b5682d15b49e4a7bec14cc2e68 (patch)
tree25f78e823bc310a67b0931e5429993ae5f3dda97 /Zend/zend_API.h
parenta6d0c66a160304df1c6a63cbc3d35eaec5a2fb9f (diff)
downloadphp-git-29a3586f7b2f41b5682d15b49e4a7bec14cc2e68.tar.gz
Allow functions in internal namespaces (for example factories)
Diffstat (limited to 'Zend/zend_API.h')
-rw-r--r--Zend/zend_API.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_API.h b/Zend/zend_API.h
index 5fa9b44624..d8ebb20ac8 100644
--- a/Zend/zend_API.h
+++ b/Zend/zend_API.h
@@ -106,6 +106,7 @@ BEGIN_EXTERN_C()
#define INIT_NAMESPACE(ns_container, ns_name) INIT_CLASS_ENTRY(ns_container, ns_name, NULL)
+#define INIT_NAMESPACE_WITH_FUNCS(ns_container, ns_name, functions) INIT_CLASS_ENTRY(ns_container, ns_name, functions)
int zend_next_free_module(void);