Commit 23927e26 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

hnetcfg: Return NET_FW_IP_VERSION_ANY as ipVersion property value.

parent e606551c
...@@ -256,8 +256,12 @@ static HRESULT WINAPI fw_app_get_IpVersion( ...@@ -256,8 +256,12 @@ static HRESULT WINAPI fw_app_get_IpVersion(
{ {
fw_app *This = impl_from_INetFwAuthorizedApplication( iface ); fw_app *This = impl_from_INetFwAuthorizedApplication( iface );
FIXME("%p, %p\n", This, ipVersion); TRACE("%p, %p\n", This, ipVersion);
return E_NOTIMPL;
if (!ipVersion)
return E_POINTER;
*ipVersion = NET_FW_IP_VERSION_ANY;
return S_OK;
} }
static HRESULT WINAPI fw_app_put_IpVersion( static HRESULT WINAPI fw_app_put_IpVersion(
...@@ -266,8 +270,8 @@ 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 ); fw_app *This = impl_from_INetFwAuthorizedApplication( iface );
FIXME("%p, %u\n", This, ipVersion); TRACE("%p, %u\n", This, ipVersion);
return E_NOTIMPL; return S_OK;
} }
static HRESULT WINAPI fw_app_get_Scope( static HRESULT WINAPI fw_app_get_Scope(
......
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