From: Eric Biggers Date: Tue, 5 May 2015 03:19:54 +0000 (-0500) Subject: wimlib_wim_info: update docs for flag bits X-Git-Tag: v1.8.1~13 X-Git-Url: https://wimlib.net/git/?p=wimlib;a=commitdiff_plain;h=50a73294df28e50188565ea88b72ed13c87ce4bf wimlib_wim_info: update docs for flag bits --- diff --git a/include/wimlib.h b/include/wimlib.h index 81e8f09c..ee0bb9bb 100644 --- a/include/wimlib.h +++ b/include/wimlib.h @@ -1298,21 +1298,27 @@ struct wimlib_wim_info { */ uint32_t opened_from_file : 1; - /** 1 iff this WIM file is considered readonly for any reason. */ + /** 1 iff this WIM file is considered readonly for any reason (e.g. the + * "readonly" header flag is set, or this is part of a split WIM, or + * filesystem permissions deny writing) */ uint32_t is_readonly : 1; - /** 1 iff reparse-point fixups are enabled for one or more images in - * this WIM file. */ + /** 1 iff the "reparse point fix" flag is set in this WIM's header */ uint32_t has_rpfix : 1; - /** 1 iff this WIM file is marked read-only in its header. */ + /** 1 iff the "readonly" flag is set in this WIM's header */ uint32_t is_marked_readonly : 1; - /** 1 iff this WIM file is part of a spanned set. */ + /** 1 iff the "spanned" flag is set in this WIM's header */ uint32_t spanned : 1; + /** 1 iff the "write in progress" flag is set in this WIM's header */ uint32_t write_in_progress : 1; + + /** 1 iff the "metadata only" flag is set in this WIM's header */ uint32_t metadata_only : 1; + + /** 1 iff the "resource only" flag is set in this WIM's header */ uint32_t resource_only : 1; /** 1 iff this WIM file is pipable (see ::WIMLIB_WRITE_FLAG_PIPABLE). */