diff options
Diffstat (limited to 'zlib.h')
-rw-r--r-- | zlib.h | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* zlib.h -- interface of the 'zlib' general purpose compression library | 1 | /* zlib.h -- interface of the 'zlib' general purpose compression library |
2 | version 1.2.4, Mar 14th, 2010 | 2 | version 1.2.4.1, March 28th, 2010 |
3 | 3 | ||
4 | Copyright (C) 1995-2010 Jean-loup Gailly and Mark Adler | 4 | Copyright (C) 1995-2010 Jean-loup Gailly and Mark Adler |
5 | 5 | ||
@@ -37,12 +37,12 @@ | |||
37 | extern "C" { | 37 | extern "C" { |
38 | #endif | 38 | #endif |
39 | 39 | ||
40 | #define ZLIB_VERSION "1.2.4" | 40 | #define ZLIB_VERSION "1.2.4.1" |
41 | #define ZLIB_VERNUM 0x1240 | 41 | #define ZLIB_VERNUM 0x1241 |
42 | #define ZLIB_VER_MAJOR 1 | 42 | #define ZLIB_VER_MAJOR 1 |
43 | #define ZLIB_VER_MINOR 2 | 43 | #define ZLIB_VER_MINOR 2 |
44 | #define ZLIB_VER_REVISION 4 | 44 | #define ZLIB_VER_REVISION 4 |
45 | #define ZLIB_VER_SUBREVISION 0 | 45 | #define ZLIB_VER_SUBREVISION 1 |
46 | 46 | ||
47 | /* | 47 | /* |
48 | The 'zlib' compression library provides in-memory compression and | 48 | The 'zlib' compression library provides in-memory compression and |
@@ -1556,7 +1556,7 @@ ZEXTERN int ZEXPORT inflateBackInit_ OF((z_streamp strm, int windowBits, | |||
1556 | inflateBackInit_((strm), (windowBits), (window), \ | 1556 | inflateBackInit_((strm), (windowBits), (window), \ |
1557 | ZLIB_VERSION, sizeof(z_stream)) | 1557 | ZLIB_VERSION, sizeof(z_stream)) |
1558 | 1558 | ||
1559 | #ifdef _LARGEFILE64_SOURCE | 1559 | #if _LARGEFILE64_SOURCE == 1 && _LFS64_LARGEFILE == 1 |
1560 | ZEXTERN gzFile ZEXPORT gzopen64 OF((const char *, const char *)); | 1560 | ZEXTERN gzFile ZEXPORT gzopen64 OF((const char *, const char *)); |
1561 | ZEXTERN off64_t ZEXPORT gzseek64 OF((gzFile, off64_t, int)); | 1561 | ZEXTERN off64_t ZEXPORT gzseek64 OF((gzFile, off64_t, int)); |
1562 | ZEXTERN off64_t ZEXPORT gztell64 OF((gzFile)); | 1562 | ZEXTERN off64_t ZEXPORT gztell64 OF((gzFile)); |
@@ -1565,14 +1565,14 @@ ZEXTERN int ZEXPORT inflateBackInit_ OF((z_streamp strm, int windowBits, | |||
1565 | ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, off64_t)); | 1565 | ZEXTERN uLong ZEXPORT crc32_combine64 OF((uLong, uLong, off64_t)); |
1566 | #endif | 1566 | #endif |
1567 | 1567 | ||
1568 | #if !defined(ZLIB_INTERNAL) && _FILE_OFFSET_BITS == 64 | 1568 | #if !defined(ZLIB_INTERNAL) && _FILE_OFFSET_BITS == 64 && _LFS64_LARGEFILE == 1 |
1569 | # define gzopen gzopen64 | 1569 | # define gzopen gzopen64 |
1570 | # define gzseek gzseek64 | 1570 | # define gzseek gzseek64 |
1571 | # define gztell gztell64 | 1571 | # define gztell gztell64 |
1572 | # define gzoffset gzoffset64 | 1572 | # define gzoffset gzoffset64 |
1573 | # define adler32_combine adler32_combine64 | 1573 | # define adler32_combine adler32_combine64 |
1574 | # define crc32_combine crc32_combine64 | 1574 | # define crc32_combine crc32_combine64 |
1575 | # ifndef _LARGEFILE64_SOURCE | 1575 | # if _LARGEFILE64_SOURCE != 1 |
1576 | ZEXTERN gzFile ZEXPORT gzopen64 OF((const char *, const char *)); | 1576 | ZEXTERN gzFile ZEXPORT gzopen64 OF((const char *, const char *)); |
1577 | ZEXTERN off_t ZEXPORT gzseek64 OF((gzFile, off_t, int)); | 1577 | ZEXTERN off_t ZEXPORT gzseek64 OF((gzFile, off_t, int)); |
1578 | ZEXTERN off_t ZEXPORT gztell64 OF((gzFile)); | 1578 | ZEXTERN off_t ZEXPORT gztell64 OF((gzFile)); |