1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-08 03:45:57 +00:00

hnetcfg: Return success from netfw_rules_Add() and netfw_rules_Remove().

This commit is contained in:
Hans Leidekker 2022-08-12 16:51:28 +02:00 committed by Alexandre Julliard
parent 99c5f7d7e8
commit dc1fa72d1d

View File

@ -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(