Share via


ProtocolResetComplete (Windows CE 5.0)

Send Feedback

This function is a required driver function that completes a protocol-initiated reset operation for which NdisReset returned NDIS_STATUS_PENDING.

VOID ProtocolResetComplete(NDIS_HANDLEProtocolBindingContext,NDIS_STATUSStatus);

Parameters

  • ProtocolBindingContext
    [in] Specifies the handle to a protocol-allocated context area in which the protocol driver maintains per-binding runtime state. The driver supplied this handle when it called NdisOpenAdapter.
  • Status
    [in] Specifies the final status of the protocol-initiated reset operation.

Return Values

None.

Remarks

ProtocolResetComplete completes processing for an asynchronous reset of the underlying driver's network adapter or virtual network adapter.

The underlying miniport's call to NdisMResetComplete causes NDIS to call the ProtocolResetComplete function. NDIS forwards the miniport-determined Status passed to NdisMResetComplete as the input Status to ProtocolStatusComplete.

ProtocolResetComplete can be called before the protocol has had time to inspect the status code that NdisReset returns at Status.

Requirements

OS Versions: Windows CE .NET 4.0 and later.
Header: Ndis.h.
Link Library: Ndislib.lib.

See Also

MiniportReset | NdisOpenAdapter | NdisMResetComplete | NdisReset | ProtocolStatus | ProtocolStatusComplete

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.