BOUND_CALLBACK - NtDoc

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

BOUND_CALLBACK BoundCallback;

BOUND_CALLBACK_STATUS BoundCallback()
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nc-wdm-bound_callback)

BOUND_CALLBACK callback function

Description

The BoundCallback routine is executed whenever the system issues a bounds exception for a user-mode thread.

Return value

A BOUND_CALLBACK_STATUS value that indicates how the bounds exception was processed by the callback function.

Remarks

Drivers can supply a BoundCallback that is called when the system issues a bounds exception.

Use KeRegisterBoundCallback to register a BoundCallback routine. A driver can subsequently remove the callback by using the KeDeregisterBoundCallback routine. If the driver can be unloaded, it must remove any registered callbacks in its Unload routine.

See also

KeDeregisterBoundCallback

KeRegisterBoundCallback