MINIDUMP_MEMORY_INFO_LIST structure (minidumpapiset.h)

Contains a list of memory regions.

Syntax

typedef struct _MINIDUMP_MEMORY_INFO_LIST {
  ULONG   SizeOfHeader;
  ULONG   SizeOfEntry;
  ULONG64 NumberOfEntries;
} MINIDUMP_MEMORY_INFO_LIST, *PMINIDUMP_MEMORY_INFO_LIST;

Members

SizeOfHeader

The size of the header data for the stream, in bytes. This is generally sizeof(MINIDUMP_MEMORY_INFO_LIST).

SizeOfEntry

The size of each entry following the header, in bytes. This is generally sizeof(MINIDUMP_MEMORY_INFO).

NumberOfEntries

The number of entries in the stream. These are generally MINIDUMP_MEMORY_INFO structures. The entries follow the header.

Requirements

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

See also

MINIDUMP_MEMORY_INFO

MINIDUMP_STREAM_TYPE