MINIDUMP_UNLOADED_MODULE_LIST Structure
Contains a list of unloaded modules.
typedef struct _MINIDUMP_UNLOADED_MODULE_LIST {
ULONG32 SizeOfHeader;
ULONG32 SizeOfEntry;
ULONG32 NumberOfEntries; } MINIDUMP_UNLOADED_MODULE_LIST,
*PMINIDUMP_UNLOADED_MODULE_LIST;
Members
- SizeOfHeader
The size of the header data for the stream, in bytes. This is generally
sizeof(MINIDUMP_UNLOADED_MODULE_LIST)
.- SizeOfEntry
The size of each entry following the header, in bytes. This is generally
sizeof(MINIDUMP_UNLOADED_MODULE)
.- NumberOfEntries
The number of entries in the stream. These are generally MINIDUMP_UNLOADED_MODULE structures. The entries follow the header.
Requirements
Redistributable |
Requires DbgHelp.dll 6.0 or later. |
---|---|
Header |
Declared in DbgHelp.h. |
See Also
MINIDUMP_STREAM_TYPE
MINIDUMP_UNLOADED_MODULE
Send comments about this topic to Microsoft
Build date: 9/25/2007
© 2007 Microsoft Corporation. All rights reserved.