CLOSE_NDK_ADAPTER_HANDLER - NtDoc

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

CLOSE_NDK_ADAPTER_HANDLER CloseNdkAdapterHandler;

VOID CloseNdkAdapterHandler(
  [in] NDIS_HANDLE MiniportAdapterContext,
  [in] NDK_ADAPTER *pNdkAdapter
)
{...}

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nc-ndisndk-close_ndk_adapter_handler)

CLOSE_NDK_ADAPTER_HANDLER callback function

Description

The CloseNDKAdapterHandler (CLOSE_NDK_ADAPTER_HANDLER) function closes an NDK adapter instance on an NDK-capable NDIS miniport adapter.

Parameters

MiniportAdapterContext [in]

A handle to a context area that the miniport driver allocated in its MiniportInitializeEx function. The miniport driver uses this context area to maintain state information for an NDIS miniport adapter.

pNdkAdapter [in]

A pointer to the NDK_ADAPTER instance to close.

Remarks

The CLOSE_NDK_ADAPTER_HANDLER function closes an NDK_ADAPTER instance on an NDK-capable NDIS miniport adapter. The miniport driver previously opened the NDK_ADAPTER instance by calling the OPEN_NDK_ADAPTER_HANDLER function.

See also

MiniportInitializeEx

NDK_ADAPTER

NDK_ADAPTER_DISPATCH

OPEN_NDK_ADAPTER_HANDLER