// netioapi.h
typedef struct _MIB_IFSTACK_ROW {
NET_IFINDEX HigherLayerInterfaceIndex;
NET_IFINDEX LowerLayerInterfaceIndex;
} MIB_IFSTACK_ROW, *PMIB_IFSTACK_ROW;
View the official Windows hardware development documentationNo description available.
The MIB_IFSTACK_ROW structure represents the relationship between two network interfaces.
HigherLayerInterfaceIndex The network interface index for the interface that is higher in the interface stack table.
LowerLayerInterfaceIndex The network interface index for the interface that is lower in the interface stack table.
The relationship between the interfaces in the interface stack is that the interface with the index in the HigherLayerInterfaceIndex member is immediately above the interface with the index in the LowerLayerInterfaceIndex member.
| Version | Available in Windows Vista and later versions of the Windows operating systems. |
| Header | Netioapi.h (include Netioapi.h) |