// wdm.h
typedef struct _KBUGCHECK_DUMP_IO {
IN ULONG64 Offset;
IN PVOID Buffer;
IN ULONG BufferLength;
IN KBUGCHECK_DUMP_IO_TYPE Type;
} KBUGCHECK_DUMP_IO, *PKBUGCHECK_DUMP_IO;
View the official Windows Driver Kit DDI referenceNo description available.
The KBUGCHECK_DUMP_IO structure describes an I/O operation on the crash dump file.
OffsetSpecifies the current offset in the crash dump file, or -1 if the crash dump file is being written sequentially.
BufferPointer to a buffer that contains the current data to be written to the dump file.
BufferLengthSpecifies the length of the buffer, in bytes, that is specified by the Buffer member.
TypeSpecifies the KBUGCHECK_DUMP_IO_TYPE value that signifies the type of data to be written to the dump file.
For information about how this structure is used, see Writing a Bug Check Callback Routine.
Writing a Bug Check Callback Routine