Describes a string.
typedef struct _MINIDUMP_STRING {
ULONG32 Length;
WCHAR Buffer[0];
} MINIDUMP_STRING, *PMINIDUMP_STRING;
Length
The size of the string in the Buffer member, in bytes. This size does not include the null-terminating character.
Buffer
The null-terminated string.
Header: Declared in dbghelp.h.