MINIDUMP_READ_MEMORY_FAILURE_CALLBACK Structure

Contains information about a failed memory read operation. This structure is used by the MiniDumpCallback function when the callback type is ReadMemoryFailureCallback.

Syntax

typedef struct _MINIDUMP_READ_MEMORY_FAILURE_CALLBACK {
    ULONG64 Offset;
    ULONG Bytes;
    HRESULT FailureStatus;
} MINIDUMP_READ_MEMORY_FAILURE_CALLBACK, *PMINIDUMP_READ_MEMORY_FAILURE_CALLBACK;  

Members

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.

Requirements

Header: Declared in dbghelp.h.

See also

MINIDUMP_CALLBACK_INPUT

MiniDumpCallback