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>
This commit is contained in:
parent
5dd1bad730
commit
267af935df
|
@ -30,6 +30,8 @@ typedef struct _WSD_REFERENCE_PARAMETERS WSD_REFERENCE_PARAMETERS;
|
||||||
typedef struct _WSD_REFERENCE_PROPERTIES WSD_REFERENCE_PROPERTIES;
|
typedef struct _WSD_REFERENCE_PROPERTIES WSD_REFERENCE_PROPERTIES;
|
||||||
typedef struct _WSD_ENDPOINT_REFERENCE WSD_ENDPOINT_REFERENCE;
|
typedef struct _WSD_ENDPOINT_REFERENCE WSD_ENDPOINT_REFERENCE;
|
||||||
typedef struct _WSD_URI_LIST WSD_URI_LIST;
|
typedef struct _WSD_URI_LIST WSD_URI_LIST;
|
||||||
|
typedef struct _WSD_PROBE WSD_PROBE;
|
||||||
|
typedef struct _WSD_SCOPES WSD_SCOPES;
|
||||||
|
|
||||||
struct _WSD_APP_SEQUENCE
|
struct _WSD_APP_SEQUENCE
|
||||||
{
|
{
|
||||||
|
@ -96,4 +98,17 @@ struct _WSD_SOAP_MESSAGE
|
||||||
WSDXML_TYPE *BodyType;
|
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
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue