NdisIMAssociateMiniport - NtDoc

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

VOID NdisIMAssociateMiniport(
  [in] NDIS_HANDLE DriverHandle,
  [in] NDIS_HANDLE ProtocolHandle
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-ndis-ndisimassociateminiport)

NdisIMAssociateMiniport function

Description

The NdisIMAssociateMiniport function informs NDIS that the specified lower and upper interfaces for miniport and protocol drivers respectively belong to the same intermediate driver.

Parameters

DriverHandle [in]

The handle to the miniport driver interface that the NdisMRegisterMiniportDriver function returns.

ProtocolHandle [in]

The handle to the protocol interface that the NdisRegisterProtocolDriver function returns.

Remarks

Any NDIS intermediate driver that exports both MiniportXxx and ProtocolXxx functions calls NdisIMAssociateMiniport to inform the NDIS library about its miniport upper edge and its protocol lower edge. Such an intermediate driver calls NdisIMAssociateMiniport during its DriverEntry routine. For more information about DriverEntry, see DriverEntry of NDIS Intermediate Drivers.

See also

DriverEntry

NdisMRegisterMiniportDriver

NdisRegisterProtocolDriver