// ntddndis.h
typedef struct _NDIS_PORT {
PNDIS_PORT Next;
PVOID NdisReserved;
PVOID MiniportReserved;
PVOID ProtocolReserved;
NDIS_PORT_CHARACTERISTICS PortCharacteristics;
} NDIS_PORT, *PNDIS_PORT;
View the official Windows Driver Kit DDI referenceNo description available.
The NDIS_PORT structure specifies the characteristics of an NDIS port and a pointer to the next element in a linked list of ports.
NextA pointer to the next port in the linked list of ports.
NdisReservedReserved for NDIS.
MiniportReservedReserved for miniport drivers.
ProtocolReservedReserved for protocol drivers.
PortCharacteristicsAn NDIS_PORT_CHARACTERISTICS structure that specifies the characteristics of the port.
The NDIS_PORT structure is used to create a linked list of ports. Such a linked list is used in port activation (NetEventPortActivation) Plug and Play (PnP) events.