namespace SabreTools.Models.NewExecutable { /// /// A table of resource type information blocks follows. The following /// is the format of each type information block: /// /// public sealed class ResourceTypeInformationEntry { /// /// Type ID. This is an integer type if the high-order bit is /// set (8000h); otherwise, it is an offset to the type string, /// the offset is relative to the beginning of the resource /// table. A zero type ID marks the end of the resource type /// information blocks. /// public ushort TypeID { get; set; } /// /// Number of resources for this type. /// public ushort ResourceCount { get; set; } /// /// Reserved. /// public uint Reserved { get; set; } /// /// A table of resources for this type follows. /// public ResourceTypeResourceEntry?[]? Resources { get; set; } } }