X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=include%2Fwimlib%2Fwof.h;h=2c690c48d34e17a47466e6038d1d508e451f2f54;hp=fae0801dbc820d7624e71da4cb52e0e10af26b1c;hb=be5acf31aa8292dcd4a2829492faefb0b200d28f;hpb=0b52336c9e67aa31c04af59867c2541384141a3d diff --git a/include/wimlib/wof.h b/include/wimlib/wof.h index fae0801d..2c690c48 100644 --- a/include/wimlib/wof.h +++ b/include/wimlib/wof.h @@ -70,12 +70,13 @@ struct wim_provider_rpdata { u8 blob_table_hash[20]; /* Uncompressed size of the file's unnamed data stream, in bytes. */ - le64 unnamed_data_stream_uncompressed_size; + le64 unnamed_data_stream_size; - /* Compressed size of the file's unnamed data stream, in bytes. If the - * stream is stored uncompressed, set this the same as the uncompressed - * size. */ - le64 unnamed_data_stream_compressed_size; + /* Size of the file's unnamed data stream as stored in the WIM file. + * If this is the same as unnamed_data_stream_size, then the stream is + * uncompressed. If this is the *not* the same as + * unnamed_data_stream_size, then the stream is compressed. */ + le64 unnamed_data_stream_size_in_wim; /* Byte offset of the file's unnamed data stream in the WIM. */ le64 unnamed_data_stream_offset_in_wim;