_MINIDUMP_HEADER (Windows CE 5.0)
This structure identifies the type, version, and format of a minidump file.
typedef struct _MINIDUMP_HEADER {ULONG32 Signature;ULONG32 Version;ULONG32 NumberOfStreams;RVA StreamDirectoryRva;ULONG32CheckSum;union{ULONG32 Reserved;ULONG32 TimeDateStamp;};ULONG64 Flags;} MINIDUMP_HEADER, *PMINIDUMP_HEADER;
Members
- Signature
Type of minidump file. Must be one of the following:- CEDUMP_SIGNATURE_CONTEXT ('XDEC')
- CEDUMP_SIGNATURE_SYSTEM ('SDEC')
- CEDUMP_SIGNATURE_COMPLETE ('CDEC')
- Version
Version of the minidump format. - NumberOfStreams
Number of streams in the minidump file. - StreamDirectoryRva
Pointer that is the relative virtual address for an array of MINIDUMP_DIRECTORY * NumberOfStreams structures. - CheckSum
Reserved for future use. - Reserved
Reserved for future use. - TimeDateStamp
Reserved for future use. - Flags
Reserved for future use.
Requirements
OS Versions: Windows CE 5.0 and later.
Header: DwCeDump.h.
Link Library: none.
See Also
Error Report Generator Reference
Send Feedback on this topic to the authors