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>
oldstable
Owen Rudge 2018-05-09 23:31:41 +01:00 committed by Alexandre Julliard
parent 5dd1bad730
commit 267af935df
1 changed files with 15 additions and 0 deletions

View File

@ -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