Contains the information needed to access a specific data stream in a minidump file.
typedef struct _MINIDUMP_DIRECTORY {
ULONG32 StreamType;
MINIDUMP_LOCATION_DESCRIPTOR Location;
} MINIDUMP_DIRECTORY, *PMINIDUMP_DIRECTORY;
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.
In this context, a data stream is a block of data within a minidump file.
Header: Declared in dbghelp.h.