From 80c8a16fb145f7ed4867d31fad3c22318a1ce708 Mon Sep 17 00:00:00 2001 From: Emiel Bruijntjes Date: Sat, 7 Dec 2013 13:12:25 -0800 Subject: replaces tabs in source code with regular spaces, added example for working with global variables --- Examples/Extension/extension.cpp | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'Examples/Extension/extension.cpp') 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 + * extension.cpp + * @author Jasper van Eck * - * An example file to show the working of an extension. + * An example file to show the working of an extension. */ // library include #include @@ -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(); + } } -- cgit v1.2.3