Compartir a través de


estructura MINIDUMP_UNLOADED_MODULE (minidumpapiset.h)

Contiene información sobre un módulo que se ha descargado. Esta información puede ayudar a diagnosticar problemas al llamar al código que ya no se carga.

Sintaxis

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

Members

BaseOfImage

Dirección base de la imagen ejecutable del módulo en memoria.

SizeOfImage

Tamaño de la imagen ejecutable del módulo en memoria, en bytes.

CheckSum

Valor de suma de comprobación de la imagen ejecutable del módulo.

TimeDateStamp

Valor de marca de tiempo de la imagen ejecutable del módulo, en time_t formato.

ModuleNameRva

RVA a una estructura de MINIDUMP_STRING que especifica el nombre del módulo.

Requisitos

   
Encabezado minidumpapiset.h (incluya DbgHelp.h)
Redistribuible DbgHelp.dll 6.0 o posterior

Consulte también

MINIDUMP_UNLOADED_MODULE_LIST