namespace BinaryObjectScanner.Models.AACS
{
///
/// This is a speed-up record which can be ignored by devices not wishing to
/// take advantage of it. It is a lookup table which allows devices to quickly
/// find their subset-difference in the Explicit Subset-Difference record,
/// without processing the entire record. This Subset-Difference Index record
/// is always present, and always precedes the Explicit Subset-Difference record
/// in the MKB, although it does not necessarily immediately precede it.
///
///
public sealed class SubsetDifferenceIndexRecord : Record
{
///
/// The number of devices per index offset.
///
public uint Span;
///
/// These offsets refer to the offset within the following Explicit
/// Subset-Difference record, with 0 being the start of the record.
///
// UInt24 not UInt32
public uint[] Offsets;
}
}