From: Ryan Norton Date: Sun, 21 Dec 2003 04:30:32 +0000 (+0000) Subject: Committed Mike's Update Patch X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/abc11600263bb2434bd243906d93f71024a381c8 Committed Mike's Update Patch 862130 wxZlibInput/OutputStream gzip support git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24953 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/zstream.h b/include/wx/zstream.h index 20def98569..de88e07b56 100644 --- a/include/wx/zstream.h +++ b/include/wx/zstream.h @@ -31,9 +31,9 @@ enum { // Flags enum { - wxZLIB_NO_HEADER = 1, // raw deflate stream, no header or checksum - wxZLIB_ZLIB = 2, // zlib header and checksum - wxZLIB_GZIP = 3 // gzip header and checksum, requires zlib 1.2+ + wxZLIB_NO_HEADER = 0, // raw deflate stream, no header or checksum + wxZLIB_ZLIB = 1, // zlib header and checksum + wxZLIB_GZIP = 2 // gzip header and checksum, requires zlib 1.2+ }; class WXDLLIMPEXP_BASE wxZlibInputStream: public wxFilterInputStream {