X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/861c20b43d4d3b06ed3dbe0fd0195450e12e5274..79b34efe9229265da3e0b0995e8828e29c4d5dd9:/lib/zlib.h diff --git a/lib/zlib.h b/lib/zlib.h index 2018f700..6ff2ae53 100644 --- a/lib/zlib.h +++ b/lib/zlib.h @@ -112,7 +112,8 @@ typedef unsigned char Byte; /* 8 bits */ typedef unsigned int uInt; /* 16 bits or more */ -typedef unsigned long uLong; /* 32 bits or more */ +typedef int32 Long; /* 32 bits or more */ +typedef uint32 uLong; /* 32 bits or more */ typedef Byte FAR Bytef; typedef char FAR charf; @@ -444,8 +445,7 @@ extern int deflateInit2 OF((z_stream *strm, int method, int windowBits, int memLevel, - int strategy, - int minCompression)); + int strategy)); /* This is another version of deflateInit with more compression options. The fields next_in, zalloc and zfree must be initialized before by the caller.