NmrClientDetachProviderComplete function (netioddk.h)

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

Syntax

void NmrClientDetachProviderComplete(
  [in] HANDLE NmrBindingHandle
);

Parameters

[in] NmrBindingHandle

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.

Return value

None

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.

Requirements

Requirement Value
Minimum supported client Available in Windows Vista and later versions of the Windows operating systems.
Target Platform Desktop
Header netioddk.h (include Wsk.h)
Library Netio.lib
IRQL <= DISPATCH_LEVEL

See also

ClientAttachProvider

ClientDetachProvider