Add gzopen_w() in Windows for wide character path names.

This commit is contained in:
Mark Adler
2012-03-16 20:53:09 -07:00
parent a3881cc745
commit dbe0bed739
9 changed files with 55 additions and 19 deletions

4
zlib.h
View File

@@ -1732,6 +1732,10 @@ ZEXTERN const uLongf * ZEXPORT get_crc_table OF((void));
ZEXTERN int ZEXPORT inflateUndermine OF((z_streamp, int));
ZEXTERN int ZEXPORT inflateResetKeep OF((z_streamp));
ZEXTERN int ZEXPORT deflateResetKeep OF((z_streamp));
#if defined(_WIN32) && !defined(Z_SOLO)
ZEXTERN gzFile ZEXPORT gzopen_w OF((const w_char *path,
const char *mode));
#endif
#ifdef __cplusplus
}