diff options
author | Joey Smith <joey@php.net> | 2000-09-10 05:13:56 +0000 |
---|---|---|
committer | Joey Smith <joey@php.net> | 2000-09-10 05:13:56 +0000 |
commit | 98cb18a7d742780645155e98aa9e0c16498bc549 (patch) | |
tree | 4b0cb264a390a0c90e60d02ffebe035471d26235 /ext/sybase_ct/php_sybase_ct.h | |
parent | 2d5316a11cdb352cd23b7abd36876fa43b6fa331 (diff) | |
download | php-git-98cb18a7d742780645155e98aa9e0c16498bc549.tar.gz |
Use new Zend API stuff.
Diffstat (limited to 'ext/sybase_ct/php_sybase_ct.h')
-rw-r--r-- | ext/sybase_ct/php_sybase_ct.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/sybase_ct/php_sybase_ct.h b/ext/sybase_ct/php_sybase_ct.h index 080c5207c8..39e63f6e3d 100644 --- a/ext/sybase_ct/php_sybase_ct.h +++ b/ext/sybase_ct/php_sybase_ct.h @@ -57,7 +57,7 @@ PHP_FUNCTION(sybase_fetch_field); #include <ctpublic.h> -typedef struct { +ZEND_BEGIN_MODULE_GLOBALS(sybase) long default_link; long num_links,num_persistent; long max_links,max_persistent; @@ -68,7 +68,7 @@ typedef struct { int le_link,le_plink,le_result; long min_server_severity, min_client_severity; long cfg_min_server_severity, cfg_min_client_severity; -} php_sybase_globals; +ZEND_END_MODULE_GLOBALS(sybase) typedef struct { CS_CONNECTION *connection; |