summaryrefslogtreecommitdiff
path: root/Examples/FunctionReturnValue/functionreturnvalue.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/FunctionReturnValue/functionreturnvalue.cpp')
-rw-r--r--Examples/FunctionReturnValue/functionreturnvalue.cpp30
1 files changed, 15 insertions, 15 deletions
diff --git a/Examples/FunctionReturnValue/functionreturnvalue.cpp b/Examples/FunctionReturnValue/functionreturnvalue.cpp
index 890a15f..a107fe7 100644
--- a/Examples/FunctionReturnValue/functionreturnvalue.cpp
+++ b/Examples/FunctionReturnValue/functionreturnvalue.cpp
@@ -1,12 +1,12 @@
/**
- * functionreturnvalue.cpp
- * @author Jasper van Eck<jasper.vaneck@copernica.com>
+ * functionreturnvalue.cpp
+ * @author Jasper van Eck<jasper.vaneck@copernica.com>
*
- * An example file to show the working of a function call with a return value.
+ * An example file to show the working of a function call with a return value.
*/
/**
- * Libraries used.
+ * Libraries used.
*/
#include <phpcpp.h>
@@ -16,28 +16,28 @@
using namespace std;
/**
- * my_return_value_function()
- * @return Php::Value
+ * my_return_value_function()
+ * @return Php::Value
*/
Php::Value my_return_value_function()
{
- return "42";
+ return "42";
}
// 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_return_value","1.0");
// add function to extension
extension.add("my_return_value_function", my_return_value_function);
-
- // return the extension module
- return extension.module();
- }
+
+ // return the extension module
+ return extension.module();
+ }
}