MINIDUMP_UNLOADED_MODULE Structure

Contains information about a module that has been unloaded. This information can help diagnose problems calling code that is no longer loaded.

Syntax

typedef struct _MINIDUMP_UNLOADED_MODULE {
    ULONG64 BaseOfImage;
    ULONG32 SizeOfImage;
    ULONG32 CheckSum;
    ULONG32 TimeDateStamp;
    RVA ModuleNameRva;
} MINIDUMP_UNLOADED_MODULE, *PMINIDUMP_UNLOADED_MODULE;  

Members

BaseOfImage
The base address of the module executable image in memory.

SizeOfImage
The size of the module executable image in memory, in bytes.

CheckSum
The checksum value of the module executable image.

TimeDateStamp
The timestamp value of the module executable image, in time_t format.

ModuleNameRva
An RVA to a MINIDUMP_STRING structure that specifies the name of the module.

Requirements

Header: Declared in dbghelp.h.

See also

MINIDUMP_UNLOADED_MODULE_LIST