wmvcore: Support IWMProfile in IWMSyncReader.
[wine.git] / include / wsdtypes.h
blobf2a91c38b1123c97c94935b75bcac5fbaeb76325
1 /*
2 * Copyright 2017 Owen Rudge for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #ifndef WSDTYPES_H
20 #define WSDTYPES_H
22 interface IWSDMessageParameters;
24 typedef struct _WSD_APP_SEQUENCE WSD_APP_SEQUENCE;
25 typedef struct _WSD_HEADER_RELATESTO WSD_HEADER_RELATESTO;
26 typedef struct _WSD_SOAP_HEADER WSD_SOAP_HEADER;
27 typedef struct _WSD_SOAP_MESSAGE WSD_SOAP_MESSAGE;
28 typedef struct _WSD_NAME_LIST WSD_NAME_LIST;
29 typedef struct _WSD_REFERENCE_PARAMETERS WSD_REFERENCE_PARAMETERS;
30 typedef struct _WSD_REFERENCE_PROPERTIES WSD_REFERENCE_PROPERTIES;
31 typedef struct _WSD_ENDPOINT_REFERENCE WSD_ENDPOINT_REFERENCE;
32 typedef struct _WSD_URI_LIST WSD_URI_LIST;
33 typedef struct _WSD_PROBE WSD_PROBE;
34 typedef struct _WSD_SCOPES WSD_SCOPES;
36 struct _WSD_APP_SEQUENCE
38 ULONGLONG InstanceId;
39 const WCHAR *SequenceId;
40 ULONGLONG MessageNumber;
43 struct _WSD_NAME_LIST
45 WSD_NAME_LIST *Next;
46 WSDXML_NAME *Element;
49 struct _WSD_REFERENCE_PARAMETERS
51 WSDXML_ELEMENT *Any;
54 struct _WSD_REFERENCE_PROPERTIES
56 WSDXML_ELEMENT *Any;
59 struct _WSD_ENDPOINT_REFERENCE
61 const WCHAR *Address;
62 WSD_REFERENCE_PROPERTIES ReferenceProperties;
63 WSD_REFERENCE_PARAMETERS ReferenceParameters;
64 WSDXML_NAME *PortType;
65 WSDXML_NAME *ServiceName;
66 WSDXML_ELEMENT *Any;
69 struct _WSD_URI_LIST
71 WSD_URI_LIST *Next;
72 const WCHAR *Element;
75 struct _WSD_HEADER_RELATESTO
77 WSDXML_NAME *RelationshipType;
78 const WCHAR *MessageID;
81 struct _WSD_SOAP_HEADER
83 const WCHAR *To;
84 const WCHAR *Action;
85 const WCHAR *MessageID;
86 WSD_HEADER_RELATESTO RelatesTo;
87 WSD_ENDPOINT_REFERENCE *ReplyTo;
88 WSD_ENDPOINT_REFERENCE *From;
89 WSD_ENDPOINT_REFERENCE *FaultTo;
90 WSD_APP_SEQUENCE *AppSequence;
91 WSDXML_ELEMENT *AnyHeaders;
94 struct _WSD_SOAP_MESSAGE
96 WSD_SOAP_HEADER Header;
97 void *Body;
98 WSDXML_TYPE *BodyType;
101 struct _WSD_PROBE
103 WSD_NAME_LIST *Types;
104 WSD_SCOPES *Scopes;
105 WSDXML_ELEMENT *Any;
108 struct _WSD_SCOPES
110 const WCHAR *MatchBy;
111 WSD_URI_LIST *Scopes;
114 #endif