From: Hans Leidekker <hans(a)codeweavers.com> --- dlls/hnetcfg/policy.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/hnetcfg/policy.c b/dlls/hnetcfg/policy.c index e603e1a1626..5031fdcdd92 100644 --- a/dlls/hnetcfg/policy.c +++ b/dlls/hnetcfg/policy.c @@ -759,7 +759,7 @@ static HRESULT WINAPI netfw_rules_Add( fw_rules *This = impl_from_INetFwRules( iface ); FIXME("%p, %p\n", This, rule); - return E_NOTIMPL; + return S_OK; } static HRESULT WINAPI netfw_rules_Remove( @@ -769,7 +769,7 @@ static HRESULT WINAPI netfw_rules_Remove( fw_rules *This = impl_from_INetFwRules( iface ); FIXME("%p, %s\n", This, debugstr_w(name)); - return E_NOTIMPL; + return S_OK; } static HRESULT WINAPI netfw_rules_Item( -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/640