MINIDUMP_MEMORY_DESCRIPTOR64 structure (minidumpapiset.h)

Describes a range of memory.

Syntax

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

Members

StartOfMemoryRange

The starting address of the memory range.

DataSize

The size of the memory range.

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