X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=include%2Fwimlib%2Fwim.h;h=57adebde7522d7f780276865045215ccf3db700c;hp=9d01522a3bdeae1c9521182a66154dd55a063870;hb=c9482ee98e12fa3f1073e4fc3c56f5eef3c40f32;hpb=30cfd915ede8a2b24b693525ff835b2f03220cc9 diff --git a/include/wimlib/wim.h b/include/wimlib/wim.h index 9d01522a..57adebde 100644 --- a/include/wimlib/wim.h +++ b/include/wimlib/wim.h @@ -47,12 +47,21 @@ struct WIMStruct { /* Have any images been deleted? */ u8 deletion_occurred : 1; - u8 all_images_verified : 1; + /* Do we know that all the stream reference counts in the WIM are + * correct? If so, this is set to 1 and deletions are safe; otherwise + * this is set to 0 and deletions are not safe until reference counts + * are recalculated. (This is due to a bug in M$'s software that + * generates WIMs with invalid reference counts.) */ + u8 refcnts_ok : 1; + u8 wim_locked : 1; + + /* One of WIMLIB_COMPRESSION_TYPE_*, cached from the header flags. */ + u8 compression_type : 2; }; -extern int -wim_run_full_verifications(WIMStruct *w); +extern void +wim_recalculate_refcnts(WIMStruct *wim); extern int read_header(const tchar *filename, int in_fd, struct wim_header *hdr);