diff options
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 |