-
Notifications
You must be signed in to change notification settings - Fork 13
Next: RemoveCallback
Archie_UwU edited this page Nov 20, 2023
·
2 revisions
Removes a callback registered with the CreateCallback function.
AurieStatus RemoveCallback(
[in] AurieModule* Module,
[in] PVOID Routine
);
The module for which the callback routine was registered. If the Module
parameter fails to match the module provided to CreateCallback, the function may fail to find the callback.
A pointer to the previously registered callback routine.
The function returns AURIE_SUCCESS
on success, otherwise returns a matching error code. If the specified callback doesn't exist, the function returns AURIE_OBJECT_NOT_FOUND
.