namespace BinaryObjectScanner.Models.PortableExecutable
{
///
/// Contains the error message or message box display text for a message table resource.
///
///
public sealed class MessageResourceEntry
{
///
/// The length, in bytes, of the MESSAGE_RESOURCE_ENTRY structure.
///
public ushort Length;
///
/// 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.
///
public ushort Flags;
///
/// Pointer to an array that contains the error message or message box display text.
///
public string Text;
}
}