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
78a1ba1e
Commit
78a1ba1e
authored
Jul 21, 2018
by
Fabian Maurer
Committed by
Alexandre Julliard
Aug 14, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hnetcfg: Add more GUIDs.
Signed-off-by:
Fabian Maurer
<
dark.shadow4@web.de
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
8ca29387
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
93 additions
and
0 deletions
+93
-0
hnetcfg.idl
dlls/hnetcfg/hnetcfg.idl
+24
-0
netfw.idl
include/netfw.idl
+69
-0
No files found.
dlls/hnetcfg/hnetcfg.idl
View file @
78a1ba1e
...
...
@@ -51,3 +51,27 @@ coclass NetFwOpenPort { interface INetFwOpenPort; }
uuid
(
e2b3c97f
-
6
ae1
-
41
ac
-
817
a
-
f6f92166d7dd
)
]
coclass
NetFwPolicy2
{
interface
INetFwPolicy2
; }
[
helpstring
(
"HNetCfg.FwRule"
),
progid
(
"HNetCfg.FwRule"
),
threading
(
both
),
uuid
(
2
c5bc43e
-
3369
-
4
c33
-
ab0c
-
be9469677af4
)
]
coclass
NetFwRule
{
interface
INetFwRule
; }
[
helpstring
(
"HNetCfg.FwProduct"
),
progid
(
"HNetCfg.FwProduct"
),
threading
(
both
),
uuid
(
9
d745ed8
-
c514
-
4
d1d
-
bf42
-
751
fed2d5ac7
)
]
coclass
NetFwProduct
{
interface
INetFwProduct
; }
[
helpstring
(
"HNetCfg.FwProducts"
),
progid
(
"HNetCfg.FwProducts"
),
threading
(
both
),
uuid
(
cc19079b
-
8272
-
4
d73
-
bb70
-
cdb533527b61
)
]
coclass
NetFwProducts
{
interface
INetFwProducts
; }
include/netfw.idl
View file @
78a1ba1e
...
...
@@ -644,6 +644,51 @@ interface INetFwMgr : IDispatch
}
[
local
,
object
,
uuid
(
71881699
-
18
f4
-
458b
-
b892
-
3
ffce5e07f75
),
dual
]
interface
INetFwProduct
:
IDispatch
{
[
id
(
1
),
propget
]
HRESULT
RuleCategories
(
[
out
,
retval
]
VARIANT
*
ruleCategories
)
;
[
id
(
1
),
propput
]
HRESULT
RuleCategories
(
[
in
]
VARIANT
ruleCategories
)
;
[
id
(
2
),
propget
]
HRESULT
DisplayName
(
[
out
,
retval
]
BSTR
*
displayName
)
;
[
id
(
2
),
propput
]
HRESULT
DisplayName
(
[
in
]
BSTR
displayName
)
;
[
id
(
3
),
propget
]
HRESULT
PathToSignedProductExe
(
[
out
,
retval
]
BSTR
*
path
)
;
}
[
local
,
object
,
uuid
(
39
eb36e0
-
2097
-
40b
d
-
8
af2
-
63
a13b525362
),
dual
]
interface
INetFwProducts
:
IDispatch
{
[
id
(
1
),
propget
]
HRESULT
Count
(
[
out
,
retval
]
LONG
*
count
)
;
[
id
(
2
)
]
HRESULT
Register
(
[
in
]
INetFwProduct
*
product
,
[
out
,
retval
]
IUnknown
**
registration
)
;
[
id
(
3
)
]
HRESULT
Item
(
[
in
]
LONG
index
,
[
out
,
retval
]
INetFwProduct
**
product
)
;
[
id
(
DISPID_NEWENUM
),
propget
,
restricted
]
HRESULT
_NewEnum
(
[
out
,
retval
]
IUnknown
**
newEnum
)
;
}
[
uuid
(
DB4F3345
-
3
EF8
-
45
ED
-
B976
-
25
A6D3B81B71
),
version
(
1.0
)
]
...
...
@@ -694,4 +739,28 @@ library NetFwPublicTypeLib
{
[
default
]
interface
INetFwPolicy2
;
}
[
uuid
(
2
c5bc43e
-
3369
-
4
c33
-
ab0c
-
be9469677af4
)
]
coclass
NetFwRule
{
[
default
]
interface
INetFwRule
;
}
[
uuid
(
9
d745ed8
-
c514
-
4
d1d
-
bf42
-
751
fed2d5ac7
)
]
coclass
NetFwProduct
{
[
default
]
interface
INetFwProduct
;
}
[
uuid
(
cc19079b
-
8272
-
4
d73
-
bb70
-
cdb533527b61
)
]
coclass
NetFwProducts
{
[
default
]
interface
INetFwProducts
;
}
}
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