// wlanihv.h
DOT11EXT_SEND_UI_REQUEST Dot11extSendUiRequest;
DWORD Dot11extSendUiRequest(
[in, optional] HANDLE hDot11SvcHandle,
[in] PDOT11EXT_IHV_UI_REQUEST pIhvUIRequest
)
{...}
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 IHV Extensions DLL calls the Dot11ExtSendUIRequest function to request user notification or input through the Native 802.11 IHV UI Extensions DLL.
hDot11SvcHandle [in, optional]The handle used by the operating system to reference the wireless LAN (WLAN) adapter. This handle value was specified through a previous call to the Dot11ExtIhvInitAdapter IHV Handler function.
pIhvUIRequest [in]A pointer to a caller-allocated buffer, formatted as a DOT11EXT_IHV_UI_REQUEST structure.
If the call succeeds, the function returns ERROR_SUCCESS. Otherwise, it returns an error code defined in Winerror.h.
DWORD WINAPI * Dot11ExtSendUIRequest(
_In_opt_ HANDLE hDot11SvcHandle,
_In_ PDOT11EXT_IHV_UI_REQUEST pIhvUIRequest
);
The IHV Extensions DLL must follow these guidelines when calling the Dot11ExtSendUIRequest function.