MINIDUMP_MEMORY_DESCRIPTOR Structure

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.

Example

C++

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

Requirements

Header: Declared in dbghelp.h.

See also

MINIDUMP_LOCATION_DESCRIPTOR