hnetcfg: Return NET_FW_IP_VERSION_ANY as ipVersion property value.
This commit is contained in:
parent
e606551c21
commit
23927e2644
|
@ -256,8 +256,12 @@ static HRESULT WINAPI fw_app_get_IpVersion(
|
|||
{
|
||||
fw_app *This = impl_from_INetFwAuthorizedApplication( iface );
|
||||
|
||||
FIXME("%p, %p\n", This, ipVersion);
|
||||
return E_NOTIMPL;
|
||||
TRACE("%p, %p\n", This, ipVersion);
|
||||
|
||||
if (!ipVersion)
|
||||
return E_POINTER;
|
||||
*ipVersion = NET_FW_IP_VERSION_ANY;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI fw_app_put_IpVersion(
|
||||
|
@ -266,8 +270,8 @@ static HRESULT WINAPI fw_app_put_IpVersion(
|
|||
{
|
||||
fw_app *This = impl_from_INetFwAuthorizedApplication( iface );
|
||||
|
||||
FIXME("%p, %u\n", This, ipVersion);
|
||||
return E_NOTIMPL;
|
||||
TRACE("%p, %u\n", This, ipVersion);
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI fw_app_get_Scope(
|
||||
|
|
Loading…
Reference in New Issue