EXCEPTION_DEFAULT_ACTION_TYPE2 (Windows CE 5.0)

Send Feedback

This enumeration lists default actions that occur as a result of an exception.

typedef enum _EXCEPTION_DEFAULT_ACTION_TYPE2 {  eda2IgnoreAll = 0,  eda2NotifyAll,  eda2StopAll,  eda2Ignore1stChc,  eda2Notify1stChc}  EXCEPTION_DEFAULT_ACTION_TYPE2;

Elements

  • eda2IgnoreAll
    Indicates that the client should not be notified of the exception.

    If the probe requires notification, the eXDI service should resume execution automatically, masking the notification.

  • eda2NotifyAll
    Indicates the eXDI service should catch the exception and pass a simple notification, such a debug message or log entry, to all clients. The debugging target does not halt.

  • eda2StopAll
    Indicates the eXDI service should catch the exception and pass it to all clients to halt the debugging target.

  • eda2Ignore1stChc
    Indicates that, if it is a first chance exception, the client should not be notified of the exception. If the probe requires notification, the eXDI service resumes execution automatically, masking the notification.

    If the exception is a second chance exception, the eXDI service should catch the exception and pass it to all clients to halt the debugging target.

  • eda2Notify1stChc
    Indicates that, if the exception is a first chance exception, the eXDI service should catch the exception and pass a simple notification, such as a debug message or log entry, to all clients to halt the debugging target.

    If the exception is a second chance exception, the eXDI service should catch the exception and pass it to all clients to halt the debugging target.

Requirements

OS Version: Windows CE 5.0 and later.
Header: exdi2.h.

See Also

IeXDI2 Interfaces

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.