Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
9b44e8b3
Commit
9b44e8b3
authored
Jun 06, 2017
by
Owen Rudge
Committed by
Alexandre Julliard
Jun 07, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add IWSDUdpMessageParameters interface declaration.
Signed-off-by:
Owen Rudge
<
orudge@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
745aed57
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
0 deletions
+21
-0
wsdbase.idl
include/wsdbase.idl
+21
-0
No files found.
include/wsdbase.idl
View file @
9b44e8b3
...
...
@@ -99,3 +99,24 @@ interface IWSDMessageParameters : IUnknown
HRESULT
SetRemoteAddress
(
[
in
]
IWSDAddress
*
pAddress
)
;
HRESULT
GetLowerParameters
(
[
out
]
IWSDMessageParameters
**
ppTxParams
)
;
}
cpp_quote
(
"HRESULT WINAPI WSDCreateUdpMessageParameters(IWSDUdpMessageParameters **ppTxParams);"
)
typedef
struct
_WSDUdpRetransmitParams
{
ULONG
ulSendDelay
;
ULONG
ulRepeat
;
ULONG
ulRepeatMinDelay
;
ULONG
ulRepeatMaxDelay
;
ULONG
ulRepeatUpperDelay
;
}
WSDUdpRetransmitParams
;
[
uuid
(
9934149
f
-
8
f0c
-
447b
-
aa0b
-
73124b0
ca7f0
),
object
]
interface
IWSDUdpMessageParameters
:
IWSDMessageParameters
{
HRESULT
SetRetransmitParams
(
[
in
]
const
WSDUdpRetransmitParams
*
pParams
)
;
HRESULT
GetRetransmitParams
(
[
out
]
WSDUdpRetransmitParams
*
pParams
)
;
}
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