MINIDUMP_MEMORY_DESCRIPTOR structure (minidumpapiset.h)

Describes a range of memory.

Syntax

typedef struct _MINIDUMP_MEMORY_DESCRIPTOR {
  ULONG64                      StartOfMemoryRange;
  MINIDUMP_LOCATION_DESCRIPTOR Memory;
} MINIDUMP_MEMORY_DESCRIPTOR, *PMINIDUMP_MEMORY_DESCRIPTOR;

Members

StartOfMemoryRange

The starting address of the memory range.

Memory

A MINIDUMP_LOCATION_DESCRIPTOR structure.

Remarks

MINIDUMP_MEMORY_DESCRIPTOR64 is used for full-memory minidumps where all of the raw memory is sequential at the end of the minidump. There is no need for individual relative virtual addresses (RVAs), because the RVA is the base RVA plus the sum of the preceding data blocks. The MINIDUMP_MEMORY_DESCRIPTOR64 structure is defined as follows.


typedef struct _MINIDUMP_MEMORY_DESCRIPTOR64 {
    ULONG64 StartOfMemoryRange;
    ULONG64 DataSize;
} MINIDUMP_MEMORY_DESCRIPTOR64, *PMINIDUMP_MEMORY_DESCRIPTOR64;

Requirements

Requirement Value
Header minidumpapiset.h (include DbgHelp.h, Minidumpapiset.h)
Redistributable DbgHelp.dll 5.1 or later

See also

MINIDUMP_LOCATION_DESCRIPTOR