The MESSAGE_RESOURCE_BLOCK structure contains information about message strings with identifiers in the range indicated by the LowId and HighId members.
typedef struct _MESSAGE_RESOURCE_BLOCK {
ULONG LowId;
ULONG HighId;
ULONG OffsetToEntries;
} MESSAGE_RESOURCE_BLOCK, *PMESSAGE_RESOURCE_BLOCK;
Members
LowId
Specifies the lowest message identifier contained within this MESSAGE_RESOURCE_BLOCK.
HighId
Specifies the highest message identifier contained within this MESSAGE_RESOURCE_BLOCK.
OffsetToEntries
Specifies 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.
See Also