mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-07-21 00:04:23 +00:00
31 lines
801 B
C#
31 lines
801 B
C#
namespace SabreTools.Models.InstallShieldCabinet
|
|
{
|
|
/// <see href="https://github.com/twogood/unshield/blob/main/lib/cabfile.h"/>
|
|
public sealed class CommonHeader
|
|
{
|
|
/// <summary>
|
|
/// "ISc("
|
|
/// </summary>
|
|
public string? Signature { get; set; }
|
|
|
|
/// <summary>
|
|
/// Encoded version
|
|
/// </summary>
|
|
public uint Version { get; set; }
|
|
|
|
/// <summary>
|
|
/// Volume information
|
|
/// </summary>
|
|
public uint VolumeInfo { get; set; }
|
|
|
|
/// <summary>
|
|
/// Offset to cabinet descriptor
|
|
/// </summary>
|
|
public uint DescriptorOffset { get; set; }
|
|
|
|
/// <summary>
|
|
/// Cabinet descriptor size
|
|
/// </summary>
|
|
public uint DescriptorSize { get; set; }
|
|
}
|
|
} |