summaryrefslogtreecommitdiff
path: root/zlib.h
diff options
context:
space:
mode:
Diffstat (limited to 'zlib.h')
-rw-r--r--zlib.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/zlib.h b/zlib.h
index 1fcf630..25535f9 100644
--- a/zlib.h
+++ b/zlib.h
@@ -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.1, March 28th, 2010 2 version 1.2.4.2, April 9th, 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 @@
37extern "C" { 37extern "C" {
38#endif 38#endif
39 39
40#define ZLIB_VERSION "1.2.4.1" 40#define ZLIB_VERSION "1.2.4.2"
41#define ZLIB_VERNUM 0x1241 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 1 45#define ZLIB_VER_SUBREVISION 2
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#if _LARGEFILE64_SOURCE == 1 && _LFS64_LARGEFILE == 1 1559#if _LARGEFILE64_SOURCE && _LFS64_LARGEFILE
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 && _LFS64_LARGEFILE == 1 1568#if !defined(ZLIB_INTERNAL) && _FILE_OFFSET_BITS+0 == 64 && _LFS64_LARGEFILE
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# if _LARGEFILE64_SOURCE != 1 1575# if _LARGEFILE64_SOURCE
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));