Edit

Share via


HS_HOST_UPDATE_CONFIGURATION_COMPLETION function

Wi-Fi Hotspot Offloading deprecation note

Important

Starting in Windows 10, version 1709, the Wi-Fi Hotspot Offloading feature is deprecated and should not be used. Instead, we recommend writing a UWP app and using the Wi-Fi Hotspot Authentication API (Windows.Networking.NetworkOperators).

For a code sample and more info, see the Wi-Fi hotspot authentication sample.

The HS_HOST_UPDATE_CONFIGURATION_COMPLETION function indicates the success or failure of a request to check for updates.

Syntax

 typedef DWORD (WINAPI *HS_HOST_UPDATE_CONFIGURATION_COMPLETION)(
  _In_ HANDLE            hPluginContext,
  _In_ eHS_UPDATE_RESULT UpdateResult
);

Parameters

hPluginContext [in]
Context handle for the plugin making the call to this function.

UpdateResult [in]
The eHS_UPDATE_RESULT enumeration value that indicates the result of the request to check for updates.

Return value

This function is called by the plugin to communicate with the host and does not return a value.

Remarks

The plugin must call this function to inform the host of the result of a previous call to HS_PLUGIN_CHECK_FOR_UPDATES.

Requirements

Version

Windows 10 Mobile

Header

Hotspotoffloadplugin.h (include Hotspotoffloadplugin.h)

See also

eHS_UPDATE_RESULT

HS_PLUGIN_CHECK_FOR_UPDATES