summaryrefslogtreecommitdiff
path: root/src/entry.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/entry.cpp')
-rw-r--r--src/entry.cpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/entry.cpp b/src/entry.cpp
new file mode 100644
index 0000000..66fa244
--- /dev/null
+++ b/src/entry.cpp
@@ -0,0 +1,24 @@
+/**
+ * Entry.cpp
+ *
+ * The kickstart function that loads the library. When PHP loads an extension,
+ * if runs a dlopen() call to open the .so file, and the it locates the
+ * get_module()' function - which it then calls.
+ *
+ * In this file we have implemented this function.
+ *
+ * @author Emiel Bruijntjes <emiel.bruijntjes@copernica.com>
+ * @documentation private
+ */
+#include "includes.h"
+
+/**
+ * The get_entry function
+ * @return zend_module_entry_t
+ */
+DLL_EXPORT zend_module_entry_t *get_entry()
+{
+
+
+}
+