Previous Next

KeDeregisterBugCheckCallback

The KeDeregisterBugCheckCallback routine removes a callback routine that was registered by KeRegisterBugCheckCallback.

BOOLEAN 
  KeDeregisterBugCheckCallback(
    IN PKBUGCHECK_CALLBACK_RECORD  CallbackRecord
    );

Parameters

CallbackRecord
Pointer to a KBUGCHECK_CALLBACK_RECORD structure. CallbackRecord must be the same value that was passed to KeRegisterBugCheckCallback when the callback was registered.

Return Value

KeDeregisterBugCheckCallback returns TRUE if the specified callback is successfully removed. It returns FALSE if the specified callback is not registered.

Headers

Declared in ntddk.h. Include ntddk.h.

Comments

Callers of KeDeregisterBugCheckCallback can be running at any IRQL.

See Also

KeRegisterBugCheckCallback