MINIDUMP_MEMORY_DESCRIPTOR Structure

Debug Help Library

MINIDUMP_MEMORY_DESCRIPTOR Structure

Describes a range of memory.

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

Redistributable

Requires DbgHelp.dll 5.1 or later.

Header

Declared in DbgHelp.h.

See Also

MINIDUMP_LOCATION_DESCRIPTOR


Send comments about this topic to Microsoft

Build date: 9/25/2007

© 2007 Microsoft Corporation. All rights reserved.