MINIDUMP_HANDLE_DESCRIPTOR_2 Structure

Debug Help Library

MINIDUMP_HANDLE_DESCRIPTOR_2 Structure

Describes the state of an individual system handle at the time the minidump was written.

typedef struct _MINIDUMP_HANDLE_DESCRIPTOR_2 {
ULONG64 Handle;
RVA TypeNameRva;
RVA ObjectNameRva;
ULONG32 Attributes;
ULONG32 GrantedAccess;
ULONG32 HandleCount;
ULONG32 PointerCount;
RVA ObjectInfoRva;
ULONG32 Reserved0; } MINIDUMP_HANDLE_DESCRIPTOR_2,
*PMINIDUMP_HANDLE_DESCRIPTOR_2;

Members

Handle

The operating system handle value.

TypeNameRva

An RVA to a MINIDUMP_STRING structure that specifies the object type of the handle. This member can be zero.

ObjectNameRva

An RVA to a MINIDUMP_STRING structure that specifies the object name of the handle. This member can be 0.

Attributes

The meaning of this member depends on the handle type and the operating system.

GrantedAccess

The meaning of this member depends on the handle type and the operating system.

HandleCount

The meaning of this member depends on the handle type and the operating system.

PointerCount

The meaning of this member depends on the handle type and the operating system.

ObjectInfoRva

An RVA to a MINIDUMP_HANDLE_OBJECT_INFORMATION structure that specifies object-specific information. This member can be 0 if there is no extra information.

Reserved0

Reserved for future use; must be zero.

Remarks

The first descriptor in the handle data stream follows the header, MINIDUMP_HANDLE_DATA_STREAM.

Requirements

Redistributable

Requires DbgHelp.dll 6.5 or later.

Header

Declared in Dbghelp.h.

See Also

MINIDUMP_HANDLE_DATA_STREAM
MINIDUMP_HANDLE_OBJECT_INFORMATION
MINIDUMP_STRING


Send comments about this topic to Microsoft

Build date: 9/25/2007

© 2007 Microsoft Corporation. All rights reserved.