Files
2024-04-23 13:30:43 -04:00

37 lines
757 B
C#

using System.Runtime.InteropServices;
namespace SabreTools.Models.InstallShieldArchiveV3
{
/// <see href="https://github.com/wfr/unshieldv3/blob/master/ISArchiveV3.h"/>
[StructLayout(LayoutKind.Sequential)]
public class File
{
public byte VolumeEnd;
public ushort Index;
public uint UncompressedSize;
public uint CompressedSize;
public uint Offset;
public uint DateTime;
public uint Reserved0;
public ushort ChunkSize;
[MarshalAs(UnmanagedType.U1)]
public Attributes Attrib;
public byte IsSplit;
public byte Reserved1;
public byte VolumeStart;
[MarshalAs(UnmanagedType.AnsiBStr)]
public string? Name;
}
}