https://git.reactos.org/?p=reactos.git;a=commitdiff;h=0ac96ca431c2d75efd106…
commit 0ac96ca431c2d75efd1060122e2294357c7ec554
Author: Katayama Hirofumi MZ <katayama.hirofumi.mz(a)gmail.com>
AuthorDate: Sun Nov 24 22:36:49 2019 +0900
Commit: Katayama Hirofumi MZ <katayama.hirofumi.mz(a)gmail.com>
CommitDate: Sun Nov 24 22:36:49 2019 +0900
[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(