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, 0 insertions, 24 deletions
diff --git a/src/entry.cpp b/src/entry.cpp
deleted file mode 100644
index 66fa244..0000000
--- a/src/entry.cpp
+++ /dev/null
@@ -1,24 +0,0 @@
-/**
- * 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()
-{
-
-
-}
-