Next: RemoveCallback - AurieFramework/YYToolkit GitHub Wiki
Removes a callback registered with the CreateCallback function.
Syntax
AurieStatus RemoveCallback(
[in] AurieModule* Module,
[in] PVOID Routine
);
Parameters
Module
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.
Routine
A pointer to the previously registered callback routine.
Return Value
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
.