diff options
author | Danny Heijl <danny@php.net> | 1999-11-14 12:55:36 +0000 |
---|---|---|
committer | Danny Heijl <danny@php.net> | 1999-11-14 12:55:36 +0000 |
commit | 2327b6b9545f5fc9d35e6d6f242aec8f66b1e27c (patch) | |
tree | 1f7b88ae118d7b7b916c140de754f8ed8fce0cca /ext/informix/php_informix.h | |
parent | 5f8f410e51ebb5b6279632b6bc923be296dce047 (diff) | |
download | php-git-2327b6b9545f5fc9d35e6d6f242aec8f66b1e27c.tar.gz |
(ext/informix) Added WIN32 build files for informix driver
and make it compile with ZTS
@ -Added Win32 build files for Informix driver
@ and make it compile with ZTS (danny)
Diffstat (limited to 'ext/informix/php_informix.h')
-rw-r--r-- | ext/informix/php_informix.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/ext/informix/php_informix.h b/ext/informix/php_informix.h index 1f55eeb22e..d21bc8b498 100644 --- a/ext/informix/php_informix.h +++ b/ext/informix/php_informix.h @@ -119,7 +119,6 @@ typedef struct { long num_links,num_persistent; long max_links,max_persistent; long allow_persistent; - int le_result,le_link,le_plink,le_idresult; char *default_host, *default_user, *default_password; int connectionid; int cursorid; @@ -133,6 +132,15 @@ typedef struct { char *nullstring; /* "NULL" */ } php_ifx_globals; /* formerly "ifx_module" in the php3 version */ +typedef struct { + int le_result; + int le_link; + int le_plink; + int le_idresult; +} php_ifx_listids; + +#define IFXL(v) (ifx_listids.v) + #ifndef ZTS extern php_ifx_globals ifx_globals; #endif |