NmrClientDetachProviderComplete - NtDoc

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

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

NtDoc

No description available.

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

NmrClientDetachProviderComplete function

Description

The NmrClientDetachProviderComplete function notifies the NMR that a client module has completed detaching from a provider 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 client module when it calls the client module's ClientAttachProvider callback function.

Remarks

A client module calls the NmrClientDetachProviderComplete function when it asynchronously completes detaching from a provider module after returning STATUS_PENDING from its ClientDetachProvider callback function.

A client module should not call the NmrClientDetachProviderComplete function if it returns STATUS_SUCCESS from its ClientDetachProvider callback function.

See also

ClientAttachProvider

ClientDetachProvider