From eb786dc05520a25673f3c642a595492e9ebe4c92 Mon Sep 17 00:00:00 2001 From: "Thies C. Arntzen" Date: Fri, 21 Apr 2000 14:45:27 +0000 Subject: [PATCH] make it compile on Win32 --- ext/oci8/oci8.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/oci8/oci8.c b/ext/oci8/oci8.c index 5c3b2af27e..d40becda3b 100644 --- a/ext/oci8/oci8.c +++ b/ext/oci8/oci8.c @@ -98,7 +98,7 @@ PHP_OCI_API php_oci_globals oci_globals; /* {{{ dynamically loadable module stuff */ #if COMPILE_DL -DLEXPORT zend_module_entry *get_module() { return &oci_module_entry; }; +DLEXPORT zend_module_entry *get_module() { return &oci8_module_entry; }; #endif /* COMPILE_DL */ /* }}} */ @@ -340,8 +340,8 @@ static void php_oci_init_globals(OCILS_D) PHP_MINIT_FUNCTION(oci) { + OCILS_FETCH(); zend_class_entry oci_lob_class_entry; - ELS_FETCH(); OCI(shutdown) = 0; -- 2.40.0