|
MESSAGE_RESOURCE_ENTRY
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
MESSAGE_RESOURCE_BLOCK, MESSAGE_RESOURCE_DATA
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
More Online Helps
Win32 Programmer's Reference (win32.hlp)
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|