KeDeregisterBoundCallback function (wdm.h)

The KeDeregisterBoundCallback routine deregisters a user-mode bound exception callback registered by KeRegisterBoundCallback.

Syntax

NTSTATUS KeDeregisterBoundCallback(
  [in] PVOID Handle
);

Parameters

[in] Handle

Specifies the value returned by KeRegisterBoundCallback when the callback was registered.

Return value

The KeDeregisterBoundCallback routine returns STATUS_SUCCESS if the callback is successfully removed. It returns STATUS_INVALID_HANDLE if no callback matching the provided Handle value is found.

Requirements

Requirement Value
Minimum supported client Available starting with Windows 10.
Target Platform Universal
Header wdm.h
Library NtosKrnl.lib
DLL NtosKrnl.exe

See also

KeRegisterBoundCallback