DOT11_IHV_VERSION_INFO - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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 reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-wlanihv-_dot11_ihv_version_info)

_DOT11_IHV_VERSION_INFO structure

Description

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.

Members

dwVerMin

The minimum API version supported by the IHV Extensions DLL.

For the Windows Vista operating system, the minimum API version is zero.

dwVerMax

The maximum API version supported by the IHV Extensions DLL.

For the Windows Vista operating system, the maximum API version is zero.

Syntax

typedef struct _DOT11_IHV_VERSION_INFO {
  DWORD dwVerMin;
  DWORD dwVerMax;
} DOT11_IHV_VERSION_INFO, *PDOT11_IHV_VERSION_INFO;

Remarks

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.

See also

Native 802.11 IHV Handler Functions

Dot11ExtIhvInitService

Dot11ExtIhvGetVersionInfo