BOUND_CALLBACK_STATUS - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// wdm.h

typedef enum _BOUND_CALLBACK_STATUS {
  BoundExceptionContinueSearch,
  BoundExceptionHandled,
  BoundExceptionError,
  BoundExceptionMaximum
} BOUND_CALLBACK_STATUS, *PBOUND_CALLBACK_STATUS;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ne-wdm-_bound_callback_status)

_BOUND_CALLBACK_STATUS enumeration

Description

The BOUND_CALLBACK_STATUS enumeration indicates how a user-mode bounds exception was processed by the BoundCallback function.

Constants

BoundExceptionContinueSearch

The bounds exception was not handled by the callback, and the exception should continue to propagate.

BoundExceptionHandled

The exception was handled by the callback, and the exception should not propagate any further.

BoundExceptionError

The user mode process should be terminated by the system.

BoundExceptionMaximum

This value is not currently used.

Remarks

The return value of the BoundCallback routine is a BOUND_CALLBACK_STATUS value.

See also

BoundCallback