Commit 68d64de4 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

hnetcfg: Add a stub implementation of INetFwAuthorizedApplication and INetFwAuthorizedApplications.

parent b915aadb
......@@ -6,6 +6,7 @@ MODULE = hnetcfg.dll
IMPORTS = kernel32
C_SRCS = \
apps.c \
hnetcfg.c \
manager.c \
policy.c \
......
......@@ -19,3 +19,5 @@
HRESULT NetFwMgr_create(IUnknown *, LPVOID *);
HRESULT NetFwPolicy_create(IUnknown *, LPVOID *);
HRESULT NetFwProfile_create(IUnknown *, LPVOID *);
HRESULT NetFwAuthorizedApplication_create(IUnknown *, LPVOID *);
HRESULT NetFwAuthorizedApplications_create(IUnknown *, LPVOID *);
......@@ -281,8 +281,8 @@ static HRESULT WINAPI fw_profile_get_AuthorizedApplications(
{
fw_profile *This = impl_from_INetFwProfile( iface );
FIXME("%p, %p\n", This, apps);
return E_NOTIMPL;
TRACE("%p, %p\n", This, apps);
return NetFwAuthorizedApplications_create( NULL, (void **)apps );
}
static const struct INetFwProfileVtbl fw_profile_vtbl =
......
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