The MESSAGE_RESOURCE_ENTRY structure contains the error message or message box display text for a message table resource.
typedef struct _MESSAGE_RESOURCE_ENTRY {
USHORT Length;
USHORT Flags;
UCHAR Text[ 1 ];
} MESSAGE_RESOURCE_ENTRY, *PMESSAGE_RESOURCE_ENTRY;
Members
Length
Specifies the length, in bytes, of the message string in this structure.
Flags
Indicates that the string is encoded in Unicode if equal to the value 0x0001; indicates that the string is encoded in ANSI if equal to the value 0x0000.
Text[ 1 ]
An array that contains the error message or message box display text. The Text[ 1 ] member is a placeholder for the variable-length Text array.
See Also