give a name to wxZlib enums to make it easier to document them
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55910 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -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+
|
||||
|
Reference in New Issue
Block a user