Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
1e867f36
Commit
1e867f36
authored
Oct 12, 2009
by
Hans Leidekker
Committed by
Alexandre Julliard
Oct 12, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hnetcfg: Add stub implementations of INetFwServices and INetFwService.
parent
535025c9
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
3 deletions
+5
-3
Makefile.in
dlls/hnetcfg/Makefile.in
+2
-1
hnetcfg_private.h
dlls/hnetcfg/hnetcfg_private.h
+1
-0
profile.c
dlls/hnetcfg/profile.c
+2
-2
service.c
dlls/hnetcfg/service.c
+0
-0
No files found.
dlls/hnetcfg/Makefile.in
View file @
1e867f36
...
...
@@ -12,7 +12,8 @@ C_SRCS = \
policy.c
\
port.c
\
profile.c
\
regsvr.c
regsvr.c
\
service.c
@MAKE_DLL_RULES@
...
...
dlls/hnetcfg/hnetcfg_private.h
View file @
1e867f36
...
...
@@ -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
*
);
dlls/hnetcfg/profile.c
View file @
1e867f36
...
...
@@ -271,8 +271,8 @@ static HRESULT WINAPI fw_profile_get_Services(
{
fw_profile
*
This
=
impl_from_INetFwProfile
(
iface
);
FIXM
E
(
"%p, %p
\n
"
,
This
,
Services
);
return
E_NOTIMPL
;
TRAC
E
(
"%p, %p
\n
"
,
This
,
Services
);
return
NetFwServices_create
(
NULL
,
(
void
**
)
Services
)
;
}
static
HRESULT
WINAPI
fw_profile_get_AuthorizedApplications
(
...
...
dlls/hnetcfg/service.c
0 → 100644
View file @
1e867f36
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment