// wdm.h
typedef enum _BOUND_CALLBACK_STATUS {
BoundExceptionContinueSearch,
BoundExceptionHandled,
BoundExceptionError,
BoundExceptionMaximum
} BOUND_CALLBACK_STATUS, *PBOUND_CALLBACK_STATUS;
View the official Windows Driver Kit DDI referenceNo description available.
The BOUND_CALLBACK_STATUS enumeration indicates how a user-mode bounds exception was processed by the BoundCallback function.
BoundExceptionContinueSearchThe bounds exception was not handled by the callback, and the exception should continue to propagate.
BoundExceptionHandledThe exception was handled by the callback, and the exception should not propagate any further.
BoundExceptionErrorThe user mode process should be terminated by the system.
BoundExceptionMaximumThis value is not currently used.
The return value of the BoundCallback routine is a BOUND_CALLBACK_STATUS value.