namespace BurnOutSharp.Models.PortableExecutable
{
///
/// Contains information about message strings with identifiers in the range indicated
/// by the LowId and HighId members.
///
///
public class MessageResourceBlock
{
///
/// The lowest message identifier contained within this structure.
///
public uint LowId;
///
/// The highest message identifier contained within this structure.
///
public uint HighId;
///
/// The offset, in bytes, from the beginning of the MESSAGE_RESOURCE_DATA structure to the
/// MESSAGE_RESOURCE_ENTRY structures in this MESSAGE_RESOURCE_BLOCK. The MESSAGE_RESOURCE_ENTRY
/// structures contain the message strings.
///
public uint OffsetToEntries;
}
}