summaryrefslogtreecommitdiff
path: root/Examples/Extension
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2013-12-07 13:12:25 -0800
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2013-12-07 13:12:25 -0800
commit80c8a16fb145f7ed4867d31fad3c22318a1ce708 (patch)
treef7605cdb86d653efaac761363ed596dd6b2e0459 /Examples/Extension
parent964d6274b0eba38df43d77b87c44bd728d2f0fb5 (diff)
replaces tabs in source code with regular spaces, added example for working with global variables
Diffstat (limited to 'Examples/Extension')
-rw-r--r--Examples/Extension/extension.cpp22
-rw-r--r--Examples/Extension/extension.php6
2 files changed, 14 insertions, 14 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();
+ }
}
diff --git a/Examples/Extension/extension.php b/Examples/Extension/extension.php
index 3941c8c..6f6b03c 100644
--- a/Examples/Extension/extension.php
+++ b/Examples/Extension/extension.php
@@ -1,9 +1,9 @@
<?php
/*
- * extension.php
- * @author Jasper van Eck<jasper.vaneck@copernica.com>
+ * extension.php
+ * @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.
*/
// print all the extensions currently loaded.