summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
Diffstat (limited to 'ext')
-rw-r--r--ext/pfpro/php_pfpro.h6
-rw-r--r--ext/skeleton/php_skeleton.h2
-rw-r--r--ext/yaz/php_yaz.h2
-rw-r--r--ext/zlib/php_zlib.h4
4 files changed, 7 insertions, 7 deletions
diff --git a/ext/pfpro/php_pfpro.h b/ext/pfpro/php_pfpro.h
index 2ce9839767..1216b9aa3e 100644
--- a/ext/pfpro/php_pfpro.h
+++ b/ext/pfpro/php_pfpro.h
@@ -54,10 +54,10 @@ PHP_FUNCTION(pfpro_process); /* Transaction processing */
ZEND_BEGIN_MODULE_GLOBALS(pfpro)
int initialized;
char *defaulthost;
- int defaultport;
- int defaulttimeout;
+ long defaultport;
+ long defaulttimeout;
char *proxyaddress;
- int proxyport;
+ long proxyport;
char *proxylogon;
char *proxypassword;
ZEND_END_MODULE_GLOBALS(pfpro)
diff --git a/ext/skeleton/php_skeleton.h b/ext/skeleton/php_skeleton.h
index 77cb8f3bd5..76ad225754 100644
--- a/ext/skeleton/php_skeleton.h
+++ b/ext/skeleton/php_skeleton.h
@@ -30,7 +30,7 @@ PHP_FUNCTION(confirm_extname_compiled); /* For testing, remove later. */
and END macros here:
ZEND_BEGIN_MODULE_GLOBALS(extname)
- int global_value;
+ long global_value;
char *global_string;
ZEND_END_MODULE_GLOBALS(extname)
*/
diff --git a/ext/yaz/php_yaz.h b/ext/yaz/php_yaz.h
index 638c5e65cb..3b9066b54e 100644
--- a/ext/yaz/php_yaz.h
+++ b/ext/yaz/php_yaz.h
@@ -57,7 +57,7 @@ PHP_FUNCTION(yaz_get_option);
ZEND_BEGIN_MODULE_GLOBALS(yaz)
int assoc_seq;
- int max_links;
+ long max_links;
char *log_file;
ZEND_END_MODULE_GLOBALS(yaz)
diff --git a/ext/zlib/php_zlib.h b/ext/zlib/php_zlib.h
index 1435e7043e..c399862dc1 100644
--- a/ext/zlib/php_zlib.h
+++ b/ext/zlib/php_zlib.h
@@ -31,8 +31,8 @@ ZEND_BEGIN_MODULE_GLOBALS(zlib)
uLong crc;
int ob_gzhandler_status;
int ob_gzip_coding;
- int output_compression;
- int output_compression_level;
+ long output_compression;
+ long output_compression_level;
char *output_handler;
ZEND_END_MODULE_GLOBALS(zlib)