mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 11:08:45 +00:00
hnetcfg: Return success from netfw_rules_Add() and netfw_rules_Remove().
This commit is contained in:
parent
99c5f7d7e8
commit
dc1fa72d1d
1 changed files with 2 additions and 2 deletions
|
@ -759,7 +759,7 @@ static HRESULT WINAPI netfw_rules_Add(
|
||||||
fw_rules *This = impl_from_INetFwRules( iface );
|
fw_rules *This = impl_from_INetFwRules( iface );
|
||||||
|
|
||||||
FIXME("%p, %p\n", This, rule);
|
FIXME("%p, %p\n", This, rule);
|
||||||
return E_NOTIMPL;
|
return S_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT WINAPI netfw_rules_Remove(
|
static HRESULT WINAPI netfw_rules_Remove(
|
||||||
|
@ -769,7 +769,7 @@ static HRESULT WINAPI netfw_rules_Remove(
|
||||||
fw_rules *This = impl_from_INetFwRules( iface );
|
fw_rules *This = impl_from_INetFwRules( iface );
|
||||||
|
|
||||||
FIXME("%p, %s\n", This, debugstr_w(name));
|
FIXME("%p, %s\n", This, debugstr_w(name));
|
||||||
return E_NOTIMPL;
|
return S_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT WINAPI netfw_rules_Item(
|
static HRESULT WINAPI netfw_rules_Item(
|
||||||
|
|
Loading…
Reference in a new issue