// 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
No description available.
The CloseNDKAdapterHandler (CLOSE_NDK_ADAPTER_HANDLER) function closes an NDK adapter instance on an NDK-capable NDIS miniport adapter.
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.
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.