MINIDUMP_USER_STREAM Structure

Contains user-defined information stored in a data stream.

Syntax

typedef struct _MINIDUMP_USER_STREAM {
    ULONG32 Type;
    ULONG BufferSize;
    PVOID Buffer;
} MINIDUMP_USER_STREAM, *PMINIDUMP_USER_STREAM;  

Members

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.

Remarks

In this context, a data stream refers to a block of data within a minidump file.

Requirements

Header: Declared in dbghelp.h.

See also

MINIDUMP_STREAM_TYPE

MINIDUMP_USER_STREAM_INFORMATION

MiniDumpCallback