MINIDUMP_USER_STREAM structure (minidumpapiset.h)

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

Requirement Value
Header minidumpapiset.h (include DbgHelp.h)
Redistributable DbgHelp.dll 5.1 or later

See also

MINIDUMP_STREAM_TYPE

MINIDUMP_USER_STREAM_INFORMATION

MiniDumpCallback