// ndis.h
VOID NdisIfDeleteIfStackEntry(
[in] NET_IFINDEX HigherLayerIfIndex,
[in] NET_IFINDEX LowerLayerIfIndex
);
View the official Windows Driver Kit DDI referenceNo description available.
The NdisIfDeleteIfStackEntry function deletes information about the ordering of two network interfaces in the NDIS interface stack.
HigherLayerIfIndex [in]The network interface index for the interface that was higher in the stack table.
LowerLayerIfIndex [in]The network interface index for the interface that was lower in the stack table.
NDIS drivers call NdisIfDeleteIfStackEntry to delete a stack entry that was previously added by calling the NdisIfAddIfStackEntry function. NDIS deletes the stack entry from its interface stack table if it finds a matching entry.
NDIS maintains an interface stack table (ifStackTable from RFC 2863). NDIS provides the NdisIfAddIfStackEntry and NdisIfDeleteIfStackEntry functions to add and delete entries in this table.