MINIDUMP_USER_STREAM_INFORMATION Structure

Contains a list of user data streams used by the MiniDumpWriteDump function.

Syntax

typedef struct _MINIDUMP_USER_STREAM_INFORMATION {
    ULONG UserStreamCount;
    PMINIDUMP_USER_STREAM UserStreamArray;
} MINIDUMP_USER_STREAM_INFORMATION, *PMINIDUMP_USER_STREAM_INFORMATION;  

Members

UserStreamCount
The number of user streams.

UserStreamArray
An array of MINIDUMP_USER_STREAM structures.

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_USER_STREAM

MiniDumpWriteDump