summaryrefslogtreecommitdiff
path: root/zend/module.cpp
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2015-04-12 12:11:13 +0200
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2015-04-12 12:11:13 +0200
commita8f3d4c47b342ef1ce9c951239a1618a0912484c (patch)
tree893442596323e62762a11f22baae0fa0f3bc3165 /zend/module.cpp
parenta860f85e80c48b821c8cb53fc1d98d5ac2f6f07a (diff)
Php::dl() function now gets an extra "persistent" parameter to load extensions persistently
Diffstat (limited to 'zend/module.cpp')
-rw-r--r--zend/module.cpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/zend/module.cpp b/zend/module.cpp
new file mode 100644
index 0000000..46d03d8
--- /dev/null
+++ b/zend/module.cpp
@@ -0,0 +1,30 @@
+/**
+ * Module.cpp
+ *
+ * Module implementation file
+ *
+ * @author Emiel Bruijntjes <emiel.bruijntjes@copernica.com>
+ * @copyright 2015 Copernica BV
+ */
+
+/**
+ * Dependencies
+ */
+#include "includes.h"
+
+/**
+ * Set up namespace
+ */
+namespace Php {
+
+/**
+ * The persistent handles
+ * @var Module::Persistent
+ */
+Module::Persistent Module::_persistent;
+
+/**
+ * End of namespace
+ */
+}
+