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
535025c9
Commit
535025c9
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 INetFwOpenPorts and INetFwOpenPort.
parent
5db3e7d4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
2 deletions
+4
-2
Makefile.in
dlls/hnetcfg/Makefile.in
+1
-0
hnetcfg_private.h
dlls/hnetcfg/hnetcfg_private.h
+1
-0
port.c
dlls/hnetcfg/port.c
+0
-0
profile.c
dlls/hnetcfg/profile.c
+2
-2
No files found.
dlls/hnetcfg/Makefile.in
View file @
535025c9
...
...
@@ -10,6 +10,7 @@ C_SRCS = \
hnetcfg.c
\
manager.c
\
policy.c
\
port.c
\
profile.c
\
regsvr.c
...
...
dlls/hnetcfg/hnetcfg_private.h
View file @
535025c9
...
...
@@ -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
*
);
dlls/hnetcfg/port.c
0 → 100644
View file @
535025c9
This diff is collapsed.
Click to expand it.
dlls/hnetcfg/profile.c
View file @
535025c9
...
...
@@ -261,8 +261,8 @@ static HRESULT WINAPI fw_profile_get_GloballyOpenPorts(
{
fw_profile
*
This
=
impl_from_INetFwProfile
(
iface
);
FIXM
E
(
"%p, %p
\n
"
,
This
,
openPorts
);
return
E_NOTIMPL
;
TRAC
E
(
"%p, %p
\n
"
,
This
,
openPorts
);
return
NetFwOpenPorts_create
(
NULL
,
(
void
**
)
openPorts
)
;
}
static
HRESULT
WINAPI
fw_profile_get_Services
(
...
...
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