From 1e746d17086bb6dcf89906b710d60673261a9935 Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Sat, 3 Oct 2015 18:47:20 -0500 Subject: [PATCH] Mark system compression support non-experimental --- doc/man1/wimlib-imagex-apply.1 | 12 ++++++------ include/wimlib.h | 23 ++++++++++------------- 2 files changed, 16 insertions(+), 19 deletions(-) diff --git a/doc/man1/wimlib-imagex-apply.1 b/doc/man1/wimlib-imagex-apply.1 index ae519a6b..58b84f4f 100644 --- a/doc/man1/wimlib-imagex-apply.1 +++ b/doc/man1/wimlib-imagex-apply.1 @@ -389,12 +389,12 @@ created when \fBwimlib-imagex capture\fR is run with the \fB--wimboot\fR option. .TP \fB--compact\fR=\fIFORMAT\fR -EXPERIMENTAL, Windows-only: compress the extracted files using System -Compression, when possible. This only works on either Windows 10 or later, or -on an older Windows to which Microsoft's wofadk.sys driver has been added. -Several different compression formats may be used with System Compression, and -one must be specified as \fIFORMAT\fR. The choices are: xpress4k, xpress8k, -xpress16k, and lzx. +Windows-only: compress the extracted files using System Compression, when +possible. This only works on either Windows 10 or later, or on an older Windows +to which Microsoft's wofadk.sys driver has been added. Several different +compression formats may be used with System Compression, and one must be +specified as \fIFORMAT\fR. The choices are: xpress4k, xpress8k, xpress16k, and +lzx. .IP "" Exclusions are handled in the same way as with the \fB--wimboot\fR option. That is: if it exists, the [PrepopulateList] section of the file diff --git a/include/wimlib.h b/include/wimlib.h index 64891042..bdb2c33e 100644 --- a/include/wimlib.h +++ b/include/wimlib.h @@ -1942,28 +1942,25 @@ typedef int (*wimlib_iterate_lookup_table_callback_t)(const struct wimlib_resour #define WIMLIB_EXTRACT_FLAG_WIMBOOT 0x00400000 /** - * EXPERIMENTAL, Windows-only: compress the extracted files using System - * Compression, when possible. This only works on either Windows 10 or later, - * or on an older Windows to which Microsoft's wofadk.sys driver has been added. - * Several different compression formats may be used with System Compression; - * this particular flag selects the XPRESS compression format with 4096 byte - * chunks. This flag is currently experimental and may be changed or removed - * in future releases of wimlib. */ + * Since wimlib v1.8.2 and Windows-only: compress the extracted files using + * System Compression, when possible. This only works on either Windows 10 or + * later, or on an older Windows to which Microsoft's wofadk.sys driver has been + * added. Several different compression formats may be used with System + * Compression; this particular flag selects the XPRESS compression format with + * 4096 byte chunks. + */ #define WIMLIB_EXTRACT_FLAG_COMPACT_XPRESS4K 0x01000000 /** Like ::WIMLIB_EXTRACT_FLAG_COMPACT_XPRESS4K, but use XPRESS compression with - * 8192 byte chunks. This flag is currently experimental and may be changed - * or removed in future releases of wimlib. */ + * 8192 byte chunks. */ #define WIMLIB_EXTRACT_FLAG_COMPACT_XPRESS8K 0x02000000 /** Like ::WIMLIB_EXTRACT_FLAG_COMPACT_XPRESS4K, but use XPRESS compression with - * 16384 byte chunks. This flag is currently experimental and may be changed - * or removed in future releases of wimlib. */ + * 16384 byte chunks. */ #define WIMLIB_EXTRACT_FLAG_COMPACT_XPRESS16K 0x04000000 /** Like ::WIMLIB_EXTRACT_FLAG_COMPACT_XPRESS4K, but use LZX compression with - * 32768 byte chunks. This flag is currently experimental and may be changed - * or removed in future releases of wimlib. */ + * 32768 byte chunks. */ #define WIMLIB_EXTRACT_FLAG_COMPACT_LZX 0x08000000 /** @} */ -- 2.43.0