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
This commit is contained in:
Ryan Norton 2003-12-21 04:30:32 +00:00
parent 301deecc27
commit abc1160026

View File

@ -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 {