Files
SabreTools.Models/InstallShieldCabinet/CommonHeader.cs

31 lines
801 B
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"/>
public sealed class CommonHeader
{
/// <summary>
/// "ISc("
/// </summary>
2023-09-10 21:24:10 -04:00
public string? Signature { get; set; }
2023-09-04 00:11:04 -04:00
/// <summary>
/// Encoded version
/// </summary>
2023-09-10 21:24:10 -04:00
public uint Version { get; set; }
2023-09-04 00:11:04 -04:00
/// <summary>
/// Volume information
/// </summary>
2023-09-10 21:24:10 -04:00
public uint VolumeInfo { get; set; }
2023-09-04 00:11:04 -04:00
/// <summary>
/// Offset to cabinet descriptor
/// </summary>
2023-09-10 21:24:10 -04:00
public uint DescriptorOffset { get; set; }
2023-09-04 00:11:04 -04:00
/// <summary>
/// Cabinet descriptor size
/// </summary>
2023-09-10 21:24:10 -04:00
public uint DescriptorSize { get; set; }
2023-09-04 00:11:04 -04:00
}
}