mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-13 13:45:57 +00:00
39 lines
931 B
C#
39 lines
931 B
C#
namespace BinaryObjectScanner.Models.InstallShieldCabinet
|
|
{
|
|
/// <see href="https://github.com/twogood/unshield/blob/main/lib/cabfile.h"/>
|
|
/// TODO: Should standard and high values be combined?
|
|
public sealed class VolumeHeader
|
|
{
|
|
public uint DataOffset;
|
|
|
|
public uint DataOffsetHigh;
|
|
|
|
public uint FirstFileIndex;
|
|
|
|
public uint LastFileIndex;
|
|
|
|
public uint FirstFileOffset;
|
|
|
|
public uint FirstFileOffsetHigh;
|
|
|
|
public uint FirstFileSizeExpanded;
|
|
|
|
public uint FirstFileSizeExpandedHigh;
|
|
|
|
public uint FirstFileSizeCompressed;
|
|
|
|
public uint FirstFileSizeCompressedHigh;
|
|
|
|
public uint LastFileOffset;
|
|
|
|
public uint LastFileOffsetHigh;
|
|
|
|
public uint LastFileSizeExpanded;
|
|
|
|
public uint LastFileSizeExpandedHigh;
|
|
|
|
public uint LastFileSizeCompressed;
|
|
|
|
public uint LastFileSizeCompressedHigh;
|
|
}
|
|
} |