mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-13 05:35:24 +00:00
16 lines
361 B
C#
16 lines
361 B
C#
namespace BurnOutSharp.Models.InstallShieldCabinet
|
|
{
|
|
/// <see href="https://github.com/twogood/unshield/blob/main/lib/cabfile.h"/>
|
|
public sealed class CommonHeader
|
|
{
|
|
public uint Signature;
|
|
|
|
public uint Version;
|
|
|
|
public uint VolumeInfo;
|
|
|
|
public uint CabDescriptorOffset;
|
|
|
|
public uint CabDescriptorSize;
|
|
}
|
|
} |