| * This file is part of the mingw-w64 runtime package. |
| * No warranty is given; refer to the file DISCLAIMER within this package. |
| #include <winapifamily.h> |
| #if WINAPI_FAMILY_PARTITION (WINAPI_PARTITION_DESKTOP) |
| typedef struct _WSDXML_TYPE { |
| typedef struct _WSDXML_NAMESPACE { |
| const WCHAR *PreferredPrefix; |
| struct _WSDXML_NAME *Names; |
| typedef struct _WSDXML_NAME { |
| typedef struct _WSDXML_PREFIX_MAPPING { |
| struct _WSDXML_PREFIX_MAPPING *Next; |
| typedef struct _WSDXML_ATTRIBUTE { |
| struct _WSDXML_ELEMENT *Element; |
| struct _WSDXML_ATTRIBUTE *Next; |
| typedef struct _WSDXML_NODE { |
| struct _WSDXML_ELEMENT *Parent; |
| struct _WSDXML_NODE *Next; |
| typedef struct _WSDXML_ELEMENT { |
| WSDXML_ATTRIBUTE *FirstAttribute; |
| WSDXML_PREFIX_MAPPING *PrefixMappings; |
| typedef struct _WSDXML_TEXT { |
| typedef struct _WSDXML_ELEMENT_LIST { |
| struct _WSDXML_ELEMENT_LIST *Next; |