summaryrefslogtreecommitdiff
path: root/Examples/FunctionVoid/functionvoid.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/FunctionVoid/functionvoid.cpp')
-rw-r--r--Examples/FunctionVoid/functionvoid.cpp28
1 files changed, 14 insertions, 14 deletions
diff --git a/Examples/FunctionVoid/functionvoid.cpp b/Examples/FunctionVoid/functionvoid.cpp
index f4386ea..91b7bb3 100644
--- a/Examples/FunctionVoid/functionvoid.cpp
+++ b/Examples/FunctionVoid/functionvoid.cpp
@@ -1,12 +1,12 @@
/**
- * functionvoid.cpp
- * @author Jasper van Eck<jasper.vaneck@copernica.com>
+ * functionvoid.cpp
+ * @author Jasper van Eck<jasper.vaneck@copernica.com>
*
- * An example file to show the working of a void function call.
+ * An example file to show the working of a void function call.
*/
/**
- * Libraries used.
+ * Libraries used.
*/
#include <iostream>
#include <phpcpp.h>
@@ -17,27 +17,27 @@
using namespace std;
/**
- * my_function_void()
+ * my_function_void()
*/
void my_function_void()
{
- cout << "In my_function_void()" << endl;
+ cout << "In my_function_void()" << endl;
}
// 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_function_void","1.0");
// add function to extension
extension.add("my_void_function", my_function_void);
-
- // return the extension module
- return extension.module();
- }
+
+ // return the extension module
+ return extension.module();
+ }
}