Contains a list of user data streams used by the MiniDumpWriteDump function.
typedef struct _MINIDUMP_USER_STREAM_INFORMATION {
ULONG UserStreamCount;
PMINIDUMP_USER_STREAM UserStreamArray;
} MINIDUMP_USER_STREAM_INFORMATION, *PMINIDUMP_USER_STREAM_INFORMATION;
UserStreamCount
The number of user streams.
UserStreamArray
An array of MINIDUMP_USER_STREAM structures.
In this context, a data stream refers to a block of data within a minidump file.
Header: Declared in dbghelp.h.