Commit 67890f7c authored by Alistair Leslie-Hughes's avatar Alistair Leslie-Hughes Committed by Vitaly Lipatov

windows.networking.connectivity: IConnectionProfile GetNetworkConnectivityLevel…

windows.networking.connectivity: IConnectionProfile GetNetworkConnectivityLevel always return internet access
parent 522741d5
......@@ -274,8 +274,10 @@ static HRESULT WINAPI connection_profile_get_ProfileName(IConnectionProfile *ifa
static HRESULT WINAPI connection_profile_GetNetworkConnectivityLevel(IConnectionProfile *iface,
enum __x_ABI_CWindows_CNetworking_CConnectivity_CNetworkConnectivityLevel *value)
{
FIXME("iface %p, value %p stub!\n", iface, value);
return E_NOTIMPL;
struct connection_profile *impl = impl_from_IConnectionProfile(iface);
FIXME("iface %p, value %p stub!\n", impl, value);
*value = NetworkConnectivityLevel_InternetAccess;
return S_OK;
}
static HRESULT WINAPI connection_profile_GetNetworkNames(IConnectionProfile *iface, __FIVectorView_1_HSTRING **value)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment