From 0ac96ca431c2d75efd1060122e2294357c7ec554 Mon Sep 17 00:00:00 2001 From: Katayama Hirofumi MZ Date: Sun, 24 Nov 2019 22:36:49 +0900 Subject: [PATCH] [HNETCFG] CORE-16372 Jansen's hack --- dll/win32/hnetcfg/policy.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dll/win32/hnetcfg/policy.c b/dll/win32/hnetcfg/policy.c index 1f5b0daa568..89ca9677be6 100644 --- a/dll/win32/hnetcfg/policy.c +++ b/dll/win32/hnetcfg/policy.c @@ -226,7 +226,11 @@ static HRESULT WINAPI netfw_rules_Item( fw_rules *This = impl_from_INetFwRules( iface ); FIXME("%p, %s, %p\n", This, debugstr_w(name), rule); +#ifdef __REACTOS__ + return S_OK; /* CORE-16372 Jansen's hack */ +#else return E_NOTIMPL; +#endif } static HRESULT WINAPI netfw_rules_get__NewEnum(