MINIDUMP_DIRECTORY Structure

Contains the information needed to access a specific data stream in a minidump file.

Syntax

typedef struct _MINIDUMP_DIRECTORY {
    ULONG32 StreamType;
    MINIDUMP_LOCATION_DESCRIPTOR Location;
} MINIDUMP_DIRECTORY, *PMINIDUMP_DIRECTORY;  

Members

StreamType
The type of data stream. This member can be one of the values in the MINIDUMP_STREAM_TYPE enumeration.

Location
A MINIDUMP_LOCATION_DESCRIPTOR structure that specifies the location of the data stream.

Remarks

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

Requirements

Header: Declared in dbghelp.h.

See also

MINIDUMP_LOCATION_DESCRIPTOR

MINIDUMP_STREAM_TYPE