// wlanihv.h
typedef struct _DOT11_IHV_VERSION_INFO {
DWORD dwVerMin;
DWORD dwVerMax;
} DOT11_IHV_VERSION_INFO, *PDOT11_IHV_VERSION_INFO;
View the official Windows Driver Kit DDI referenceNo description available.
Important The Native 802.11 Wireless LAN interface is deprecated in Windows 10 and later. Please use the WLAN Device Driver Interface (WDI) instead. For more information about WDI, see WLAN Universal Windows driver model.
The DOT11_IHV_VERSION_INFO structure defines the versions of the IHV Extensibility functions that are supported by the IHV Extensions DLL.
dwVerMinThe minimum API version supported by the IHV Extensions DLL.
For the Windows Vista operating system, the minimum API version is zero.
dwVerMaxThe maximum API version supported by the IHV Extensions DLL.
For the Windows Vista operating system, the maximum API version is zero.
typedef struct _DOT11_IHV_VERSION_INFO {
DWORD dwVerMin;
DWORD dwVerMax;
} DOT11_IHV_VERSION_INFO, *PDOT11_IHV_VERSION_INFO;
Prior to starting the IHV Extensions DLL through a call to the Dot11ExtIhvInitService IHV handler function, the operating system queries the API versions supported by the IHV Extensions DLL through a call to the Dot11ExtIhvGetVersionInfo IHV handler function. The IHV Extensions DLL returns the range of API versions it supports through the pDot11IHVVersionInfo parameter.
Native 802.11 IHV Handler Functions