Module: wine Branch: master Commit: 267af935df4f224ecdedd98d833d4c53c90bdc7c URL: https://source.winehq.org/git/wine.git/?a=commit;h=267af935df4f224ecdedd98d8...
Author: Owen Rudge orudge@codeweavers.com Date: Wed May 9 23:31:41 2018 +0100
include: Add WSD_PROBE structure to wsdtypes.h.
Signed-off-by: Owen Rudge orudge@codeweavers.com Signed-off-by: Huw Davies huw@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
include/wsdtypes.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+)
diff --git a/include/wsdtypes.h b/include/wsdtypes.h index 387b6c3..f2a91c3 100644 --- a/include/wsdtypes.h +++ b/include/wsdtypes.h @@ -30,6 +30,8 @@ typedef struct _WSD_REFERENCE_PARAMETERS WSD_REFERENCE_PARAMETERS; typedef struct _WSD_REFERENCE_PROPERTIES WSD_REFERENCE_PROPERTIES; typedef struct _WSD_ENDPOINT_REFERENCE WSD_ENDPOINT_REFERENCE; typedef struct _WSD_URI_LIST WSD_URI_LIST; +typedef struct _WSD_PROBE WSD_PROBE; +typedef struct _WSD_SCOPES WSD_SCOPES;
struct _WSD_APP_SEQUENCE { @@ -96,4 +98,17 @@ struct _WSD_SOAP_MESSAGE WSDXML_TYPE *BodyType; };
+struct _WSD_PROBE +{ + WSD_NAME_LIST *Types; + WSD_SCOPES *Scopes; + WSDXML_ELEMENT *Any; +}; + +struct _WSD_SCOPES +{ + const WCHAR *MatchBy; + WSD_URI_LIST *Scopes; +}; + #endif