MINIDUMP_LOCATION_DESCRIPTOR Structure

Debug Help Library

MINIDUMP_LOCATION_DESCRIPTOR Structure

Contains information describing the location of a data stream within a minidump file.

typedef struct _MINIDUMP_LOCATION_DESCRIPTOR {
ULONG64 DataSize;
RVA64 Rva; } MINIDUMP_LOCATION_DESCRIPTOR;

Members

DataSize

The size of the data stream, in bytes.

Rva

The relative virtual address (RVA) of the data. This is the byte offset of the data stream from the beginning of the minidump file.

Remarks

In this context, a data stream refers to a block of data within a minidump file.

This structure uses 32-bit locations for RVAs in the first 4GB and 64-bit locations are used for larger RVAs. The MINIDUMP_LOCATION_DESCRIPTOR64 structure is defined as follows.

typedef struct _MINIDUMP_LOCATION_DESCRIPTOR64 {
  ULONG64 DataSize;
  RVA64 Rva;
} MINIDUMP_LOCATION_DESCRIPTOR64;

Requirements

Redistributable

Requires DbgHelp.dll 5.1 or later.

Header

Declared in DbgHelp.h.

See Also

MINIDUMP_DIRECTORY
MINIDUMP_EXCEPTION_STREAM
MINIDUMP_MEMORY_DESCRIPTOR


Send comments about this topic to Microsoft

Build date: 9/25/2007

© 2007 Microsoft Corporation. All rights reserved.