summaryrefslogtreecommitdiff
path: root/src/entry.cpp
blob: 66fa244d4b6e2c8c424b13ab3ae2202ffe6b29ef (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
/**
 *  Entry.cpp
 *
 *  The kickstart function that loads the library. When PHP loads an extension,
 *  if runs a dlopen() call to open the .so file, and the it locates the
 *  get_module()' function - which it then calls.
 *
 *  In this file we have implemented this function.
 *
 *  @author Emiel Bruijntjes <emiel.bruijntjes@copernica.com>
 *  @documentation private
 */
#include "includes.h"

/**
 *  The get_entry function
 *  @return zend_module_entry_t
 */
DLL_EXPORT zend_module_entry_t *get_entry()
{


}