mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-13 21:31:04 +00:00
14 lines
323 B
C#
14 lines
323 B
C#
namespace BinaryObjectScanner.Models.InstallShieldCabinet
|
|
{
|
|
/// <see href="https://github.com/twogood/unshield/blob/main/lib/cabfile.h"/>
|
|
public sealed class OffsetList
|
|
{
|
|
public uint NameOffset;
|
|
|
|
public string Name;
|
|
|
|
public uint DescriptorOffset;
|
|
|
|
public uint NextOffset;
|
|
}
|
|
} |