diff options
Diffstat (limited to 'ext/oracle/oracle.c')
-rw-r--r-- | ext/oracle/oracle.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/oracle/oracle.c b/ext/oracle/oracle.c index 60407d0e2a..464eee04a3 100644 --- a/ext/oracle/oracle.c +++ b/ext/oracle/oracle.c @@ -136,7 +136,7 @@ function_entry oracle_functions[] = { {NULL, NULL, NULL} }; -php3_module_entry oracle_module_entry = { +zend_module_entry oracle_module_entry = { "Oracle", oracle_functions, PHP_MINIT(oracle), /* extension-wide startup function */ @@ -183,7 +183,7 @@ static const text *ora_func_tab[] = }; #if COMPILE_DL -DLEXPORT php3_module_entry *get_module() { return &oracle_module_entry; }; +DLEXPORT zend_module_entry *get_module() { return &oracle_module_entry; }; #endif static int _close_oraconn(oraConnection *conn) |