diff options
author | Remi Collet <remi@fedoraproject.org> | 2015-05-06 14:36:18 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2015-05-06 15:16:43 +0200 |
commit | 9e0cc7a1d926c1364a834177cadea431cd8b39a7 (patch) | |
tree | f63c505073d6aa0b74bde71eb6a67e6e4c23d8bd /ext/zip/lib/php_zip_config.w32.h | |
parent | 31f516b4888fcf096fe0912828948bed84f2ad1c (diff) | |
download | php-git-9e0cc7a1d926c1364a834177cadea431cd8b39a7.tar.gz |
update libzip to version 1.0.1
Diffstat (limited to 'ext/zip/lib/php_zip_config.w32.h')
-rw-r--r-- | ext/zip/lib/php_zip_config.w32.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ext/zip/lib/php_zip_config.w32.h b/ext/zip/lib/php_zip_config.w32.h index b3192cbdd4..31efa7aee4 100644 --- a/ext/zip/lib/php_zip_config.w32.h +++ b/ext/zip/lib/php_zip_config.w32.h @@ -57,4 +57,12 @@ typedef long long ssize_t; # undef strcasecmp # define strcasecmp _strcmpi +#if !defined(EOPNOTSUPP) && defined(_WIN32) +# define EOPNOTSUPP 130 +#endif + +#if !defined(EOVERFLOW) && defined(_WIN32) +# define EOVERFLOW 132 +#endif + #endif /* HAD_CONFIG_H */ |