CustomDumpItem Structure

Describes an item to be added to a custom dump in error reporting.

struct {
    ECustomDumpItemKind itemKind; 
    union {
        UINT_PTR pReserved;
    }
} CustomDumpItem;

Members

Member Description

itemKind

An ECustomDumpItemKind Enumeration value that indicates the kind of item to be added.

pReserved

Not currently used. Any items added to the union must be no larger than pointer size. If a struct is required, you must allocate it separately and point to it.

Remarks

ICLRErrorReportingManager::BeginCustomDump Method takes a parameter of type CustomDumpItem.

Requirements

Platforms: Windows 2000, Windows XP, Windows Server 2003 family

Header: MSCorEE.idl

Library: Included as a resource in MSCorEE.dll

.NET Framework Version: 2.0

See Also

Other Resources

Hosting Structures