Identifies the type of object-specific information.
typedef enum _MINIDUMP_HANDLE_OBJECT_INFORMATION_TYPE
{
MiniHandleObjectInformationNone,
MiniThreadInformation1,
MiniMutantInformation1,
MiniMutantInformation2,
MiniProcessInformation1,
MiniProcessInformation2,
MiniHandleObjectInformationTypeMax
} MINIDUMP_HANDLE_OBJECT_INFORMATION_TYPE;
| Constant | Description |
|---|---|
| MiniHandleObjectInformationNone | There is no object-specific information for this handle type. |
| MiniThreadInformation1 | The information is specific to thread objects. |
| MiniMutantInformation1 | The information is specific to mutant objects. |
| MiniMutantInformation2 | The information is specific to mutant objects. |
| MiniProcessInformation1 | The information is specific to process objects. |
| MiniProcessInformation2 | The information is specific to process objects. |
| MiniHandleObjectInformationTypeMax | Indicates the end of the enumeration. |
The information represented by each of these values can vary by operating system and procesor architecture. Per-handle object-specific information is automatically gathered when minidump type is MiniDumpWithHandleData. For more information, see MINIDUMP_TYPE.
Header: Declared in dbghelp.h.