mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-13 05:35:24 +00:00
16 lines
370 B
C#
16 lines
370 B
C#
namespace BurnOutSharp.Models.InstallShieldCabinet
|
|
{
|
|
/// <see href="https://github.com/twogood/unshield/blob/main/lib/libunshield.h"/>
|
|
public sealed class Component
|
|
{
|
|
public uint NameOffset;
|
|
|
|
public string Name;
|
|
|
|
public ushort FileGroupCount;
|
|
|
|
public uint FileGroupTableOffset;
|
|
|
|
public string[] FileGroupNames;
|
|
}
|
|
} |