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.
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
Redistributable |
Requires DbgHelp.dll 6.0 or later. |
---|---|
Header |
Declared in DbgHelp.h. |
See Also
Send comments about this topic to Microsoft
Build date: 9/25/2007
© 2007 Microsoft Corporation. All rights reserved.