Previous Next

KBUGCHECK_DUMP_IO_TYPE

The KBUGCHECK_DUMP_IO_TYPE enumeration type identifies the type of a section of data within a crash dump file.

typedef enum _KBUGCHECK_DUMP_IO_TYPE {
  KbDumpIoInvalid,
  KbDumpIoHeader,
  KbDumpIoBody,
  KbDumpIoSecondaryData,
  KbDumpIoComplete
} KBUGCHECK_DUMP_IO_TYPE;

Members

KbDumpIoInvalid
Reserved for system use. Do not use.
KbDumpIoHeader
Specifies that crash dump data is header information.
KbDumpIoBody
Specifies that the crash dump data is part of the main body of the crash dump, such as the memory state at the time of the bug check.
KbDumpIoSecondaryData
Specifies that the crash dump data is data returned by a BugCheckSecondaryDumpDataCallback routine.
KbDumpIoComplete
Specifies that the crash dump data has been completely written.

Headers

Declared in ntddk.h. Include ntddk.h.

Comments

This enumeration type is only available on Windows XP Service Pack 1 (SP1), Windows Server 2003, and later operating systems.

KBUGCHECK_DUMP_IO_TYPE values are used in the Type member of KBUGCHECK_DUMP_IO to specify the type of data in an I/O operation on the crash dump file.

For more information about how this enumeration type is used, see BugCheckDumpIoCallback.

See Also

KBUGCHECK_DUMP_IO, BugCheckDumpIoCallback, BugCheckSecondaryDumpDataCallback