Files
SabreTools.Models/InstallShieldCabinet/VolumeHeader.cs

39 lines
1.1 KiB
C#
Raw Permalink Normal View History

2023-09-04 00:12:49 -04:00
namespace SabreTools.Models.InstallShieldCabinet
2023-09-04 00:11:04 -04:00
{
/// <see href="https://github.com/twogood/unshield/blob/main/lib/cabfile.h"/>
/// TODO: Should standard and high values be combined?
public sealed class VolumeHeader
{
2023-09-10 21:24:10 -04:00
public uint DataOffset { get; set; }
2023-09-04 00:11:04 -04:00
2023-09-10 21:24:10 -04:00
public uint DataOffsetHigh { get; set; }
2023-09-04 00:11:04 -04:00
2023-09-10 21:24:10 -04:00
public uint FirstFileIndex { get; set; }
2023-09-04 00:11:04 -04:00
2023-09-10 21:24:10 -04:00
public uint LastFileIndex { get; set; }
2023-09-04 00:11:04 -04:00
2023-09-10 21:24:10 -04:00
public uint FirstFileOffset { get; set; }
2023-09-04 00:11:04 -04:00
2023-09-10 21:24:10 -04:00
public uint FirstFileOffsetHigh { get; set; }
2023-09-04 00:11:04 -04:00
2023-09-10 21:24:10 -04:00
public uint FirstFileSizeExpanded { get; set; }
2023-09-04 00:11:04 -04:00
2023-09-10 21:24:10 -04:00
public uint FirstFileSizeExpandedHigh { get; set; }
2023-09-04 00:11:04 -04:00
2023-09-10 21:24:10 -04:00
public uint FirstFileSizeCompressed { get; set; }
2023-09-04 00:11:04 -04:00
2023-09-10 21:24:10 -04:00
public uint FirstFileSizeCompressedHigh { get; set; }
2023-09-04 00:11:04 -04:00
2023-09-10 21:24:10 -04:00
public uint LastFileOffset { get; set; }
2023-09-04 00:11:04 -04:00
2023-09-10 21:24:10 -04:00
public uint LastFileOffsetHigh { get; set; }
2023-09-04 00:11:04 -04:00
2023-09-10 21:24:10 -04:00
public uint LastFileSizeExpanded { get; set; }
2023-09-04 00:11:04 -04:00
2023-09-10 21:24:10 -04:00
public uint LastFileSizeExpandedHigh { get; set; }
2023-09-04 00:11:04 -04:00
2023-09-10 21:24:10 -04:00
public uint LastFileSizeCompressed { get; set; }
2023-09-04 00:11:04 -04:00
2023-09-10 21:24:10 -04:00
public uint LastFileSizeCompressedHigh { get; set; }
2023-09-04 00:11:04 -04:00
}
}