From: Eric Biggers Date: Mon, 12 Jan 2015 01:03:10 +0000 (-0600) Subject: wimlib.h: Fix documentation for compression block sizes X-Git-Tag: v1.8.0~63 X-Git-Url: https://wimlib.net/git/?p=wimlib;a=commitdiff_plain;h=bc4f5291caf141f39e472d929c9bd8d24c514fe5 wimlib.h: Fix documentation for compression block sizes --- diff --git a/include/wimlib.h b/include/wimlib.h index f7a4a2e8..393787d1 100644 --- a/include/wimlib.h +++ b/include/wimlib.h @@ -474,7 +474,7 @@ enum wimlib_compression_type { * * If using wimlib_create_compressor() to create an XPRESS compressor * directly, the @p max_block_size parameter may be any positive value - * up to 2^16. + * up to and including 2^16. */ WIMLIB_COMPRESSION_TYPE_XPRESS = 1, @@ -496,7 +496,7 @@ enum wimlib_compression_type { * * If using wimlib_create_compressor() to create an LZX compressor * directly, the @p max_block_size parameter may be any positive value - * up to 2^21. + * up to and including 2^21. */ WIMLIB_COMPRESSION_TYPE_LZX = 2, @@ -517,7 +517,7 @@ enum wimlib_compression_type { * * If using wimlib_create_compressor() to create an LZMS compressor * directly, the @p max_block_size parameter may be any positive value - * up to 2^31 - 2. + * up to and including 1180427429. */ WIMLIB_COMPRESSION_TYPE_LZMS = 3, };