// netioddk.h
VOID NmrProviderDetachClientComplete(
[in] HANDLE NmrBindingHandle
);
View the official Windows Driver Kit DDI referenceNo description available.
The NmrProviderDetachClientComplete function notifies the NMR that a provider module has completed detaching from a client module.
NmrBindingHandle [in]A handle used by the NMR to represent the binding between the client module and the provider module. The NMR passes this handle to the provider module when it calls the provider module's ProviderAttachClient callback function.
A provider module calls the NmrProviderDetachClientComplete function when it asynchronously completes detaching from a client module after returning STATUS_PENDING from its ProviderDetachClient callback function.
A provider module should not call the NmrProviderDetachClientComplete function if it returns STATUS_SUCCESS from its ProviderDetachClient callback function.