Commit dc1fa72d authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

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

parent 99c5f7d7
......@@ -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(
......
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