MINIDUMP_HANDLE_DESCRIPTOR Structure
Contains the state of an individual system handle at the time the minidump was written.
typedef struct _MINIDUMP_HANDLE_DESCRIPTOR {
ULONG64 Handle;
RVA TypeNameRva;
RVA ObjectNameRva;
ULONG32 Attributes;
ULONG32 GrantedAccess;
ULONG32 HandleCount;
ULONG32 PointerCount; } MINIDUMP_HANDLE_DESCRIPTOR,
*PMINIDUMP_HANDLE_DESCRIPTOR;
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 zero.
- 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.
Remarks
The first descriptor in the handle data stream follows the header, MINIDUMP_HANDLE_DATA_STREAM.
Requirements
Redistributable |
Requires DbgHelp.dll 5.1 or later. |
---|---|
Header |
Declared in DbgHelp.h. |
See Also
MINIDUMP_HANDLE_DATA_STREAM
MINIDUMP_STRING
Send comments about this topic to Microsoft
Build date: 9/25/2007
© 2007 Microsoft Corporation. All rights reserved.