// windot11.h
typedef struct _DOT11_WPS_DEVICE_NAME {
ULONG
uDeviceNameLength;
UCHAR ucDeviceName[DOT11_WPS_DEVICE_NAME_MAX_LENGTH];
} DOT11_WPS_DEVICE_NAME, *PDOT11_WPS_DEVICE_NAME;
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_WPS_DEVICE_NAME structure contains a friendly name of the P2P device.
uDeviceNameLengthThe length, in bytes, of the device name.
ucDeviceNameA UTF-8–encoded descriptive name of the device.
typedef struct _DOT11_WPS_DEVICE_NAME {
ULONG
uDeviceNameLength;
UCHAR ucDeviceName[DOT11_WPS_DEVICE_NAME_MAX_LENGTH];
} DOT11_WPS_DEVICE_NAME, *PDOT11_WPS_DEVICE_NAME;