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