/usr/x86_64-w64-mingw32/include/wsdxmldom.h is in mingw-w64-x86-64-dev 2.0.3-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 | /**
* This file has no copyright assigned and is placed in the Public Domain.
* This file is part of the w64 mingw-runtime package.
* No warranty is given; refer to the file DISCLAIMER.PD within this package.
*/
#ifndef _INC_WSDXMLDOM
#define _INC_WSDXMLDOM
#ifndef _INC_WSDAPI
#error Please include wsdapi.h instead of this header. This header cannot be used directly.
#endif
#if (_WIN32_WINNT >= 0x0600)
#ifdef __cplusplus
extern "C" {
#endif
typedef struct _WSDXML_TYPE {
WCHAR *Uri;
BYTE *Table;
} WSDXML_TYPE;
typedef const WSDXML_TYPE *PCWSDXML_TYPE;
typedef struct _WSDXML_NAMESPACE {
const WCHAR *Uri;
const WCHAR *PreferredPrefix;
WSDXML_NAME *Names;
WORD NamesCount;
WORD Encoding;
} WSDXML_NAMESPACE;
typedef const WSDXML_NAMESPACE *PCWSDXML_NAMESPACE;
typedef struct _WSDXML_NAME {
WSDXML_NAMESPACE *Space;
WCHAR *LocalName;
} WSDXML_NAME;
typedef struct _WSDXML_NODE {
enum DUMMYUNIONNAME {
ElementType,
TextType
} Type;
WSDXML_ELEMENT *Parent;
WSDXML_NODE *Next;
} WSDXML_NODE;
typedef struct _WSDXML_TEXT {
WSDXML_NODE Node;
WCHAR *Text;
} WSDXML_TEXT;
typedef struct _WSDXML_ATTRIBUTE {
WSDXML_ELEMENT *Element;
WSDXML_ATTRIBUTE *Next;
WSDXML_NAME *Name;
WCHAR *Value;
} WSDXML_ATTRIBUTE;
typedef struct _WSDXML_PREFIX_MAPPING {
DWORD Refs;
WSDXML_PREFIX_MAPPING *Next;
WSDXML_NAMESPACE *Space;
WCHAR *Prefix;
} WSDXML_PREFIX_MAPPING;
typedef struct _WSDXML_ELEMENT {
WSDXML_NODE Node;
WSDXML_NAME *Name;
WSDXML_ATTRIBUTE *FirstAttribute;
WSDXML_NODE *FirstChild;
WSDXML_PREFIX_MAPPING *PrefixMappings;
} WSDXML_ELEMENT;
typedef struct _WSDXML_ELEMENT_LIST {
WSDXML_ELEMENT_LIST *Next;
WSDXML_ELEMENT *Element;
} WSDXML_ELEMENT_LIST;
#ifdef __cplusplus
}
#endif
#endif /*(_WIN32_WINNT >= 0x0600)*/
#endif /*_INC_WSDXMLDOM*/
|