NdisIMAssociateMiniport (Compact 2013)
3/26/2014
This function informs NDIS that the specified lower and upper interfaces for miniport and protocol respectively belong to the same intermediate driver.
Syntax
VOID NdisIMAssociateMiniport(
NDIS_HANDLE DriverHandle,
NDIS_HANDLE ProtocolHandle
);
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.
Return Value
None.
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.
Requirements
Header |
ndis.h |
Library |
ndis.lib |
See Also
Reference
NDIS Functions for Intermediate Drivers
DriverEntry
NdisIMRegisterLayeredMiniport
NdisMInitializeWrapper
NdisRegisterProtocol