X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c1dc9f8394c1488ad8e7d945e6f943f7b34554ce..a721fd82b7ca8c97048453d4aaff559e8f741d69:/include/wx/zstream.h diff --git a/include/wx/zstream.h b/include/wx/zstream.h index f662277d18..d6c473080b 100644 --- a/include/wx/zstream.h +++ b/include/wx/zstream.h @@ -18,7 +18,7 @@ #include "wx/stream.h" // Compression level -enum { +enum wxZlibCompressionLevels { wxZ_DEFAULT_COMPRESSION = -1, wxZ_NO_COMPRESSION = 0, wxZ_BEST_SPEED = 1, @@ -26,7 +26,7 @@ enum { }; // Flags -enum { +enum wxZLibFlags { 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.1+