summaryrefslogtreecommitdiff
path: root/Examples/Extension/extension.cpp
blob: 99da5c732a40ae386fe8272fa84bd52002c60d14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/**
 *  extension.cpp
 *  @author Jasper van Eck<jasper.vaneck@copernica.com>
 * 
 *  An example file to show the working of an extension.
 */
// library include
#include <phpcpp.h>

/**
 *  Namespace to use
 */
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
        static Php::Extension extension("my_simple_extension","1.0");
        
        // return the extension module
        return extension.module();
    }
}