// windot11.h
typedef struct DOT11_MAC_INFO {
ULONG uReserved;
ULONG uNdisPortNumber;
DOT11_MAC_ADDRESS MacAddr;
} DOT11_MAC_INFO, *PDOT11_MAC_INFO;
View the official Windows Driver Kit DDI referenceNo description available.
[!Important] WiFiCx is the new Wi-Fi driver model released in Windows 11. We recommend that you use WiFiCx to take advantage of the latest features. The WDI driver model is now in maintenance mode and will only receive high priority fixes.
The DOT11_MAC_INFO structure specifies a new 802.11 MAC entity that the 802.11 miniport driver has created.
uReservedReserved for system use.
uNdisPortNumberA ULONG value that specifies the number of the NDIS port that the 802.11 miniport driver has allocated to reference a newly created 802.11 MAC entity. This value is equal to the PortNumber member of the NDIS_PORT_CHARACTERISTICS structure.
MacAddrThe media access control (MAC) address of a newly created 802.11 MAC entity.
typedef struct DOT11_MAC_INFO {
ULONG uReserved;
ULONG uNdisPortNumber;
DOT11_MAC_ADDRESS MacAddr;
} DOT11_MAC_INFO, *PDOT11_MAC_INFO;
This structure is used with OID_DOT11_CREATE_MAC.