mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-11 05:35:15 +00:00
28 lines
1023 B
C#
28 lines
1023 B
C#
namespace BurnOutSharp.Models.PortableExecutable
|
|
{
|
|
/// <summary>
|
|
/// Contains information about message strings with identifiers in the range indicated
|
|
/// by the LowId and HighId members.
|
|
/// </summary>
|
|
/// <see href="https://learn.microsoft.com/en-us/windows/win32/api/winnt/ns-winnt-message_resource_block"/>
|
|
public class MessageResourceBlock
|
|
{
|
|
/// <summary>
|
|
/// The lowest message identifier contained within this structure.
|
|
/// </summary>
|
|
public uint LowId;
|
|
|
|
/// <summary>
|
|
/// The highest message identifier contained within this structure.
|
|
/// </summary>
|
|
public uint HighId;
|
|
|
|
/// <summary>
|
|
/// 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.
|
|
/// </summary>
|
|
public uint OffsetToEntries;
|
|
}
|
|
}
|