mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-13 05:35:24 +00:00
38 lines
865 B
C#
38 lines
865 B
C#
namespace BurnOutSharp.Models.InstallShieldCabinet
|
|
{
|
|
/// <see href="https://github.com/twogood/unshield/blob/main/lib/cabfile.h"/>
|
|
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;
|
|
}
|
|
} |