_CEDUMP_EXCEPTION (Windows Embedded CE 6.0)
1/5/2010
This structure contains the exception record for the exception that caused the dump file to be generated.
Syntax
typedef struct _CEDUMP_EXCEPTION {
ULONG32 ExceptionCode;
ULONG32 ExceptionFlags;
ULONG32 ExceptionRecord;
ULONG32 ExceptionAddress;
ULONG32 NumberParameters;
ULONG32 ExceptionInformation [ EXCEPTION_MAXIMUM_PARAMETERS ];
} CEDUMP_EXCEPTION, *PCEDUMP_EXCEPTION;
Members
- ExceptionCode
Exception code.
ExceptionFlags
Flag that indicates whether the operating system should continue processing. This member can be either zero, indicating a continuable exception, or EXCEPTION_NONCONTINUABLE, indicating a noncontinuable exception.An attempt to continue execution after a noncontinuable exception causes the EXCEPTION_NONCONTINUABLE_EXCEPTION exception.
- ExceptionRecord
Address of the Exception_Record that caused the dump file to be generated.
- ExceptionAddress
Address where the exception occurred**.**
- NumberParameters
Number of parameters in this record.
ExceptionInformation
Parameters for this record.This member contains a maximum of 15 parameters of 4 bytes each.
Requirements
Header | dwcedump.h |
Windows Embedded CE | Windows CE 5.0 and later |