NmrProviderDetachClientComplete - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// netioddk.h

VOID NmrProviderDetachClientComplete(
  [in] HANDLE NmrBindingHandle
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-netioddk-nmrproviderdetachclientcomplete)

NmrProviderDetachClientComplete function

Description

The NmrProviderDetachClientComplete function notifies the NMR that a provider module has completed detaching from a client module.

Parameters

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.

Remarks

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.

See also

ProviderAttachClient

ProviderDetachClient