MINIDUMP_HANDLE_OBJECT_INFORMATION Structure

Contains object-specific information for a handle.

Syntax

typedef struct _MINIDUMP_HANDLE_OBJECT_INFORMATION {
    RVA NextInfoRva;
    ULONG32 InfoType;
    ULONG32 SizeOfInfo;
} MINIDUMP_HANDLE_OBJECT_INFORMATION;  

Members

NextInfoRva
An RVA to a MINIDUMP_HANDLE_OBJECT_INFORMATION structure that specifies additional object-specific information. This member is 0 if there are no more elements in the list.

InfoType
The object information type. This member is one of the values from the MINIDUMP_HANDLE_OBJECT_INFORMATION_TYPE enumeration.

SizeOfInfo
The size of the information that follows this member, in bytes.

Requirements

Header: Declared in dbghelp.h.

See also

MINIDUMP_HANDLE_DESCRIPTOR_2