namespace BinaryObjectScanner.Models.GCF { /// public sealed class BlockEntry { /// /// Flags for the block entry. 0x200F0000 == Not used. /// public uint EntryFlags; /// /// The offset for the data contained in this block entry in the file. /// public uint FileDataOffset; /// /// The length of the data in this block entry. /// public uint FileDataSize; /// /// The offset to the first data block of this block entry's data. /// public uint FirstDataBlockIndex; /// /// The next block entry in the series. (N/A if == BlockCount.) /// public uint NextBlockEntryIndex; /// /// The previous block entry in the series. (N/A if == BlockCount.) /// public uint PreviousBlockEntryIndex; /// /// The offset of the block entry in the directory. /// public uint DirectoryIndex; } }