Contains information about a failed memory read operation. This structure is used by the MiniDumpCallback function when the callback type is ReadMemoryFailureCallback.
typedef struct _MINIDUMP_READ_MEMORY_FAILURE_CALLBACK {
ULONG64 Offset;
ULONG Bytes;
HRESULT FailureStatus;
} MINIDUMP_READ_MEMORY_FAILURE_CALLBACK, *PMINIDUMP_READ_MEMORY_FAILURE_CALLBACK;
Offset
The offset of the address for the failed memory read operation.
Bytes
The size of the failed memory read operation, in bytes.
FailureStatus
The resulting error code from the failed memory read operation.
Header: Declared in dbghelp.h.