Contains user-defined information stored in a data stream.
typedef struct _MINIDUMP_USER_STREAM {
ULONG32 Type;
ULONG BufferSize;
PVOID Buffer;
} MINIDUMP_USER_STREAM, *PMINIDUMP_USER_STREAM;
Type
The type of data stream. For more information, see MINIDUMP_STREAM_TYPE.
BufferSize
The size of the user-defined data stream buffer, in bytes.
Buffer
A pointer to a buffer that contains the user-defined data stream.
In this context, a data stream refers to a block of data within a minidump file.
Header: Declared in dbghelp.h.