From 6e915ef7fc78b445878ffcbb2c7a28b63eef3c93 Mon Sep 17 00:00:00 2001 From: Martin Date: Mon, 24 Apr 2017 17:26:55 +0200 Subject: [PATCH] Improve MZ_ZIP_FLAG_WRITE_ZIP64 documentation --- miniz_zip.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/miniz_zip.h b/miniz_zip.h index 30e34ce..c4b7d69 100644 --- a/miniz_zip.h +++ b/miniz_zip.h @@ -95,7 +95,7 @@ typedef enum { MZ_ZIP_FLAG_DO_NOT_SORT_CENTRAL_DIRECTORY = 0x0800, MZ_ZIP_FLAG_VALIDATE_LOCATE_FILE_FLAG = 0x1000, /* if enabled, mz_zip_reader_locate_file() will be called on each file as its validated to ensure the func finds the file in the central dir (intended for testing) */ MZ_ZIP_FLAG_VALIDATE_HEADERS_ONLY = 0x2000, /* validate the local headers, but don't decompress the entire file and check the crc32 */ - MZ_ZIP_FLAG_WRITE_ZIP64 = 0x4000, /* use the zip64 file format, instead of the original zip file format */ + MZ_ZIP_FLAG_WRITE_ZIP64 = 0x4000, /* always use the zip64 file format, instead of the original zip file format with automatic switch to zip64. Use as flags parameter with mz_zip_writer_init*_v2 */ MZ_ZIP_FLAG_WRITE_ALLOW_READING = 0x8000, MZ_ZIP_FLAG_ASCII_FILENAME = 0x10000 } mz_zip_flags;