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