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
2ba3cc0f
Commit
2ba3cc0f
authored
Mar 29, 2017
by
Owen Rudge
Committed by
Alexandre Julliard
Apr 03, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add partial wsddisco.idl.
Signed-off-by:
Owen Rudge
<
orudge@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
f08f3c87
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
108 additions
and
0 deletions
+108
-0
Makefile.in
include/Makefile.in
+1
-0
wsddisco.idl
include/wsddisco.idl
+107
-0
No files found.
include/Makefile.in
View file @
2ba3cc0f
...
...
@@ -182,6 +182,7 @@ IDL_SRCS = \
wmsdkidl.idl
\
wpcapi.idl
\
wsdbase.idl
\
wsddisco.idl
\
wsdxml.idl
\
wtypes.idl
\
wuapi.idl
\
...
...
include/wsddisco.idl
0 → 100644
View file @
2ba3cc0f
/*
*
Copyright
2017
Owen
Rudge
for
CodeWeavers
*
*
This
library
is
free
software
; you can redistribute it and/or
*
modify
it
under
the
terms
of
the
GNU
Lesser
General
Public
*
License
as
published
by
the
Free
Software
Foundation
; either
*
version
2.1
of
the
License
,
or
(
at
your
option
)
any
later
version
.
*
*
This
library
is
distributed
in
the
hope
that
it
will
be
useful
,
*
but
WITHOUT
ANY
WARRANTY
; without even the implied warranty of
*
MERCHANTABILITY
or
FITNESS
FOR
A
PARTICULAR
PURPOSE
.
See
the
GNU
*
Lesser
General
Public
License
for
more
details
.
*
*
You
should
have
received
a
copy
of
the
GNU
Lesser
General
Public
*
License
along
with
this
library
; if not, write to the Free Software
*
Foundation
,
Inc
.
,
51
Franklin
St
,
Fifth
Floor
,
Boston
,
MA
02110
-
1301
,
USA
*/
import
"objidl.idl"
;
import
"wsdxmldom.h"
;
import
"wsdtypes.h"
;
interface
IWSDScopeMatchingRule
;
interface
IWSDiscoveryPublisherNotify
;
interface
IWSDiscoveryPublisher
;
interface
IWSDXMLContext
;
[
uuid
(
fcafe424
-
fef5
-
481
a
-
bd9f
-
33
ce0574256f
),
object
,
local
,
restricted
,
pointer_default
(
unique
)
]
interface
IWSDScopeMatchingRule
:
IUnknown
{
HRESULT
GetScopeRule
(
[
out
]
LPCWSTR
*
ppszScopeMatchingRule
)
;
HRESULT
MatchScopes
(
[
in
]
LPCWSTR
pszScope1
,
[
in
]
LPCWSTR
pszScope2
,
[
out
]
BOOL
*
pfMatch
)
;
}
[
uuid
(
e67651b0
-
337
a
-
4b3
c
-
9758
-
733388568251
),
object
,
local
,
restricted
,
pointer_default
(
unique
)
]
interface
IWSDiscoveryPublisherNotify
:
IUnknown
{
HRESULT
ProbeHandler
(
[
in
]
const
WSD_SOAP_MESSAGE
*
pSoap
,
[
in
]
IWSDMessageParameters
*
pMessageParameters
)
;
HRESULT
ResolveHandler
(
[
in
]
const
WSD_SOAP_MESSAGE
*
pSoap
,
[
in
]
IWSDMessageParameters
*
pMessageParameters
)
;
}
[
uuid
(
AE01E1A8
-
3
ff9
-
4148
-
8116
-
057
cc616fe13
),
object
,
local
,
restricted
,
pointer_default
(
unique
)
]
interface
IWSDiscoveryPublisher
:
IUnknown
{
HRESULT
SetAddressFamily
(
[
in
]
DWORD
dwAddressFamily
)
;
HRESULT
RegisterNotificationSink
(
[
in
]
IWSDiscoveryPublisherNotify
*
pSink
)
;
HRESULT
UnRegisterNotificationSink
(
[
in
]
IWSDiscoveryPublisherNotify
*
pSink
)
;
HRESULT
Publish
(
[
in
]
LPCWSTR
pszId
,
[
in
]
ULONGLONG
ullMetadataVersion
,
[
in
]
ULONGLONG
ullInstanceId
,
[
in
]
ULONGLONG
ullMessageNumber
,
[
in
,
optional
]
LPCWSTR
pszSessionId
,
[
in
,
optional
]
const
WSD_NAME_LIST
*
pTypesList
,
[
in
,
optional
]
const
WSD_URI_LIST
*
pScopesList
,
[
in
,
optional
]
const
WSD_URI_LIST
*
pXAddrsList
)
;
HRESULT
UnPublish
(
[
in
]
LPCWSTR
pszId
,
[
in
]
ULONGLONG
ullInstanceId
,
[
in
]
ULONGLONG
ullMessageNumber
,
[
in
,
optional
]
LPCWSTR
pszSessionId
,
[
in
,
optional
]
const
WSDXML_ELEMENT
*
pAny
)
;
HRESULT
MatchProbe
(
[
in
]
const
WSD_SOAP_MESSAGE
*
pProbeMessage
,
[
in
]
IWSDMessageParameters
*
pMessageParameters
,
[
in
]
LPCWSTR
pszId
,
[
in
]
ULONGLONG
ullMetadataVersion
,
[
in
]
ULONGLONG
ullInstanceId
,
[
in
]
ULONGLONG
ullMessageNumber
,
[
in
,
optional
]
LPCWSTR
pszSessionId
,
[
in
,
optional
]
const
WSD_NAME_LIST
*
pTypesList
,
[
in
,
optional
]
const
WSD_URI_LIST
*
pScopesList
,
[
in
,
optional
]
const
WSD_URI_LIST
*
pXAddrsList
)
;
HRESULT
MatchResolve
(
[
in
]
const
WSD_SOAP_MESSAGE
*
pResolveMessage
,
[
in
]
IWSDMessageParameters
*
pMessageParameters
,
[
in
]
LPCWSTR
pszId
,
[
in
]
ULONGLONG
ullMetadataVersion
,
[
in
]
ULONGLONG
ullInstanceId
,
[
in
]
ULONGLONG
ullMessageNumber
,
[
in
,
optional
]
LPCWSTR
pszSessionId
,
[
in
,
optional
]
const
WSD_NAME_LIST
*
pTypesList
,
[
in
,
optional
]
const
WSD_URI_LIST
*
pScopesList
,
[
in
,
optional
]
const
WSD_URI_LIST
*
pXAddrsList
)
;
HRESULT
PublishEx
(
[
in
]
LPCWSTR
pszId
,
[
in
]
ULONGLONG
ullMetadataVersion
,
[
in
]
ULONGLONG
ullInstanceId
,
[
in
]
ULONGLONG
ullMessageNumber
,
[
in
,
optional
]
LPCWSTR
pszSessionId
,
[
in
,
optional
]
const
WSD_NAME_LIST
*
pTypesList
,
[
in
,
optional
]
const
WSD_URI_LIST
*
pScopesList
,
[
in
,
optional
]
const
WSD_URI_LIST
*
pXAddrsList
,
[
in
,
optional
]
const
WSDXML_ELEMENT
*
pHeaderAny
,
[
in
,
optional
]
const
WSDXML_ELEMENT
*
pReferenceParameterAny
,
[
in
,
optional
]
const
WSDXML_ELEMENT
*
pPolicyAny
,
[
in
,
optional
]
const
WSDXML_ELEMENT
*
pEndpointReferenceAny
,
[
in
,
optional
]
const
WSDXML_ELEMENT
*
pAny
)
;
HRESULT
MatchProbeEx
(
[
in
]
const
WSD_SOAP_MESSAGE
*
pProbeMessage
,
[
in
]
IWSDMessageParameters
*
pMessageParameters
,
[
in
]
LPCWSTR
pszId
,
[
in
]
ULONGLONG
ullMetadataVersion
,
[
in
]
ULONGLONG
ullInstanceId
,
[
in
]
ULONGLONG
ullMessageNumber
,
[
in
,
optional
]
LPCWSTR
pszSessionId
,
[
in
,
optional
]
const
WSD_NAME_LIST
*
pTypesList
,
[
in
,
optional
]
const
WSD_URI_LIST
*
pScopesList
,
[
in
,
optional
]
const
WSD_URI_LIST
*
pXAddrsList
,
[
in
,
optional
]
const
WSDXML_ELEMENT
*
pHeaderAny
,
[
in
,
optional
]
const
WSDXML_ELEMENT
*
pReferenceParameterAny
,
[
in
,
optional
]
const
WSDXML_ELEMENT
*
pPolicyAny
,
[
in
,
optional
]
const
WSDXML_ELEMENT
*
pEndpointReferenceAny
,
[
in
,
optional
]
const
WSDXML_ELEMENT
*
pAny
)
;
HRESULT
MatchResolveEx
(
[
in
]
const
WSD_SOAP_MESSAGE
*
pResolveMessage
,
[
in
]
IWSDMessageParameters
*
pMessageParameters
,
[
in
]
LPCWSTR
pszId
,
[
in
]
ULONGLONG
ullMetadataVersion
,
[
in
]
ULONGLONG
ullInstanceId
,
[
in
]
ULONGLONG
ullMessageNumber
,
[
in
,
optional
]
LPCWSTR
pszSessionId
,
[
in
,
optional
]
const
WSD_NAME_LIST
*
pTypesList
,
[
in
,
optional
]
const
WSD_URI_LIST
*
pScopesList
,
[
in
,
optional
]
const
WSD_URI_LIST
*
pXAddrsList
,
[
in
,
optional
]
const
WSDXML_ELEMENT
*
pHeaderAny
,
[
in
,
optional
]
const
WSDXML_ELEMENT
*
pReferenceParameterAny
,
[
in
,
optional
]
const
WSDXML_ELEMENT
*
pPolicyAny
,
[
in
,
optional
]
const
WSDXML_ELEMENT
*
pEndpointReferenceAny
,
[
in
,
optional
]
const
WSDXML_ELEMENT
*
pAny
)
;
HRESULT
RegisterScopeMatchingRule
(
[
in
]
IWSDScopeMatchingRule
*
pScopeMatchingRule
)
;
HRESULT
UnRegisterScopeMatchingRule
(
[
in
]
IWSDScopeMatchingRule
*
pScopeMatchingRule
)
;
HRESULT
GetXMLContext
(
[
out
]
IWSDXMLContext
**
ppContext
)
;
}
cpp_quote
(
"HRESULT WINAPI WSDCreateDiscoveryPublisher(IWSDXMLContext* pContext, IWSDiscoveryPublisher **ppPublisher);"
)
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