mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-13 05:35:24 +00:00
30 lines
588 B
C#
30 lines
588 B
C#
namespace BurnOutSharp.Models.InstallShieldCabinet
|
|
{
|
|
/// <see href="https://github.com/twogood/unshield/blob/main/lib/cabfile.h"/>
|
|
public sealed class FileDescriptor
|
|
{
|
|
public uint NameOffset;
|
|
|
|
public string Name;
|
|
|
|
public uint DirectoryIndex;
|
|
|
|
public FileFlags Flags;
|
|
|
|
public ulong ExpandedSize;
|
|
|
|
public ulong CompressedSize;
|
|
|
|
public ulong DataOffset;
|
|
|
|
public byte[] MD5;
|
|
|
|
public ushort Volume;
|
|
|
|
public uint LinkPrevious;
|
|
|
|
public uint LinkNext;
|
|
|
|
public LinkFlags LinkFlags;
|
|
}
|
|
} |