MINIDUMP_HANDLE_DESCRIPTOR_2 structure (minidumpapiset.h)
Describes the state of an individual system handle at the time the minidump was written.
Syntax
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
Requirement | Value |
---|---|
Header | minidumpapiset.h (include Dbghelp.h) |
Redistributable | DbgHelp.dll 6.5 or later |