EXCEPTION_DEBUG_INFO

typedef struct _EXCEPTION_DEBUG_INFO { /* exdi */

EXCEPTION_RECORD ExceptionRecord;

DWORD dwFirstChance;

} EXCEPTION_DEBUG_INFO, *LPEXCEPTION_DEBUG_INFO;

The EXCEPTION_DEBUG_INFO structure contains exception information that could be used by a debugger.

Members

ExceptionRecord

Contains an EXCEPTION_RECORD structure with information specific to the exception. This includes the exception code, flags, address, and so on.

dwFirstChance

Indicates whether the debugger has previously encountered the exception specified by ExceptionRecord. If dwFirstChance is non-zero, this is the first time the debugger has encountered the exception. Debuggers typically handle breakpoint and single step exceptions when they are first encountered. If dwFirstChance is zero, the debugger has previously encountered the exception. This occurs only if during the search for structured exception handlers, either no handler was found, or the exception was continued.

See Also

DEBUG_EVENT