Commit 1e867f36 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

hnetcfg: Add stub implementations of INetFwServices and INetFwService.

parent 535025c9
......@@ -12,7 +12,8 @@ C_SRCS = \
policy.c \
port.c \
profile.c \
regsvr.c
regsvr.c \
service.c
@MAKE_DLL_RULES@
......
......@@ -22,3 +22,4 @@ HRESULT NetFwProfile_create(IUnknown *, LPVOID *);
HRESULT NetFwAuthorizedApplication_create(IUnknown *, LPVOID *);
HRESULT NetFwAuthorizedApplications_create(IUnknown *, LPVOID *);
HRESULT NetFwOpenPorts_create(IUnknown *, LPVOID *);
HRESULT NetFwServices_create(IUnknown *, LPVOID *);
......@@ -271,8 +271,8 @@ static HRESULT WINAPI fw_profile_get_Services(
{
fw_profile *This = impl_from_INetFwProfile( iface );
FIXME("%p, %p\n", This, Services);
return E_NOTIMPL;
TRACE("%p, %p\n", This, Services);
return NetFwServices_create( NULL, (void **)Services );
}
static HRESULT WINAPI fw_profile_get_AuthorizedApplications(
......
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