Commit 535025c9 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

hnetcfg: Add stub implementations of INetFwOpenPorts and INetFwOpenPort.

parent 5db3e7d4
......@@ -10,6 +10,7 @@ C_SRCS = \
hnetcfg.c \
manager.c \
policy.c \
port.c \
profile.c \
regsvr.c
......
......@@ -21,3 +21,4 @@ HRESULT NetFwPolicy_create(IUnknown *, LPVOID *);
HRESULT NetFwProfile_create(IUnknown *, LPVOID *);
HRESULT NetFwAuthorizedApplication_create(IUnknown *, LPVOID *);
HRESULT NetFwAuthorizedApplications_create(IUnknown *, LPVOID *);
HRESULT NetFwOpenPorts_create(IUnknown *, LPVOID *);
......@@ -261,8 +261,8 @@ static HRESULT WINAPI fw_profile_get_GloballyOpenPorts(
{
fw_profile *This = impl_from_INetFwProfile( iface );
FIXME("%p, %p\n", This, openPorts);
return E_NOTIMPL;
TRACE("%p, %p\n", This, openPorts);
return NetFwOpenPorts_create( NULL, (void **)openPorts );
}
static HRESULT WINAPI fw_profile_get_Services(
......
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