2.2.1.1 EEAString

The EEAString structure encodes strings of ANSI characters, as specified in [ISO/IEC-8859-1], that contain troubleshooting information.

 typedef struct tagEEAString {
   short nLength;
   [size_is(nLength)] byte* pString;
 } EEAString;

nLength: This field MUST contain the size of pString in bytes.

pString: A NULL-terminated ANSI string that contains troubleshooting information.