Crashpad
|
Information about a specific module that was recorded as being unloaded at the time the snapshot was taken. More...
#include "dbghelp.h"
Public Attributes | |
uint64_t | BaseOfImage |
The base address where the module was loaded in the address space of the process that the minidump file contains a snapshot of. | |
uint32_t | SizeOfImage |
The size of the unloaded module. | |
uint32_t | CheckSum |
The module’s checksum, or 0 if unknown. More... | |
uint32_t | TimeDateStamp |
The module’s timestamp, in time_t units, seconds since the POSIX epoch, or 0 if unknown. More... | |
RVA | ModuleNameRva |
RVA of a MINIDUMP_STRING containing the module’s path or file name. | |
Information about a specific module that was recorded as being unloaded at the time the snapshot was taken.
An unloaded module may be a shared library or a loadable module.
uint32_t MINIDUMP_UNLOADED_MODULE::CheckSum |
The module’s checksum, or 0
if unknown.
On Windows, this field comes from the CheckSum
field of the module’s IMAGE_OPTIONAL_HEADER
structure, if present. It reflects the checksum at the time the module was linked.
uint32_t MINIDUMP_UNLOADED_MODULE::TimeDateStamp |
The module’s timestamp, in time_t
units, seconds since the POSIX epoch, or 0
if unknown.
On Windows, this field comes from the TimeDateStamp
field of the module’s IMAGE_FILE_HEADER
structure. It reflects the timestamp at the time the module was linked.