summaryrefslogtreecommitdiff
path: root/Examples/Extension/extension.cpp
diff options
context:
space:
mode:
authorJasperVanEck <jaspergkurtz@gmail.com>2013-11-28 11:31:23 +0100
committerJasperVanEck <jaspergkurtz@gmail.com>2013-11-28 11:31:23 +0100
commit0fdfc4ced15ed29c407ad95cb0e1224711c1919d (patch)
tree1c288b5591407f496d735daf15461ff117cd8355 /Examples/Extension/extension.cpp
parentd8a1c0e46c39bce675d6322cd0bfa0f1f5ba3166 (diff)
Added extension and functionvoid exmaple
Diffstat (limited to 'Examples/Extension/extension.cpp')
-rw-r--r--Examples/Extension/extension.cpp27
1 files changed, 27 insertions, 0 deletions
diff --git a/Examples/Extension/extension.cpp b/Examples/Extension/extension.cpp
new file mode 100644
index 0000000..99b88ea
--- /dev/null
+++ b/Examples/Extension/extension.cpp
@@ -0,0 +1,27 @@
+/**
+ * extension.cpp
+ * @Author Jasper van Eck
+ *
+ * An example file to show the working of an extension.
+ */
+// library include
+#include <phpcpp.h>
+
+/**
+ * Namespace to use
+ */
+using namespace std;
+
+// Symbols are exported according to the "C" language
+extern "C"
+{
+ // export the "get_module" function that will be called by the Zend engine
+ PHPCPP_EXPORT void *get_module()
+ {
+ // create extension
+ static Php::Extension extension("my_simple_extension","1.0");
+
+ // return the extension module
+ return extension.module();
+ }
+}