// wlanihv.h
DOT11EXTIHV_ADAPTER_RESET Dot11extihvAdapterReset;
DWORD Dot11extihvAdapterReset(
[in, optional] HANDLE hIhvExtAdapter
)
{...}
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 operating system calls the IHV Extensions DLL Dot11ExtIhvAdapterReset function to reset the wireless LAN (WLAN) adapter.
hIhvExtAdapter [in, optional]The handle used by the IHV Extensions DLL to reference the WLAN adapter. This handle value was specified through a previous call to the Dot11ExtIhvInitAdapter IHV Handler function.
If the call succeeds, the function returns ERROR_SUCCESS. Otherwise, it returns an error code defined in Winerror.h.
DOT11EXTIHV_ADAPTER_RESET Dot11ExtIhvAdapterReset;
DWORD APIENTRY Dot11ExtIhvAdapterReset(
_In_opt_ HANDLE hIhvExtAdapter
)
{ ... }
The operating system calls Dot11ExtIhvAdapterReset whenever one of the following events occurs.
The Dot11ExtIhvAdapterReset function must restore the WLAN adapter to the same state as when the DLL's Dot11ExtIhvInitAdapter function was called.
For more information about the reset operation for WLAN adapters, see 802.11 WLAN Adapter Reset.