summaryrefslogtreecommitdiff
path: root/Examples/Extension/extension.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/Extension/extension.cpp')
-rw-r--r--Examples/Extension/extension.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/Examples/Extension/extension.cpp b/Examples/Extension/extension.cpp
index 9f7f495..99da5c7 100644
--- a/Examples/Extension/extension.cpp
+++ b/Examples/Extension/extension.cpp
@@ -1,8 +1,8 @@
/**
- * extension.cpp
- * @author Jasper van Eck<jasper.vaneck@copernica.com>
+ * extension.cpp
+ * @author Jasper van Eck<jasper.vaneck@copernica.com>
*
- * An example file to show the working of an extension.
+ * An example file to show the working of an extension.
*/
// library include
#include <phpcpp.h>
@@ -15,13 +15,13 @@ 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
+ // 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();
- }
+
+ // return the extension module
+ return extension.module();
+ }
}