server: Make the fd passing code slightly more portable.
[wine] / include / msxml6.idl
1 /*
2  * Copyright (C) 2010 Nikolay Sivov for CodeWeavers
3  *
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.
8  *
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.
13  *
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
17  */
18
19
20 #include <msxml6did.h>
21 import "msxml2.idl";
22
23 [
24     uuid(88d96a05-f192-11d4-a65f-0040963251e5)
25 ]
26 coclass DOMDocument60
27 {
28     [default] interface IXMLDOMDocument3;
29     [default, source] dispinterface XMLDOMDocumentEvents;
30 }
31
32 [
33     uuid(88d96a06-f192-11d4-a65f-0040963251e5),
34 ]
35 coclass FreeThreadedDOMDocument60
36 {
37     [default] interface IXMLDOMDocument3;
38     [default, source] dispinterface XMLDOMDocumentEvents;
39 }
40
41 [
42     local,
43     object,
44     dual,
45     uuid(2933bf96-7b36-11d2-b20e-00c04f983e60),
46     oleautomation,
47 ]
48 interface IXMLDOMDocument3 : IXMLDOMDocument2
49 {
50     [id(DISPID_XMLDOM_DOCUMENT3_VALIDATENODE)]
51     HRESULT validateNode(
52         [in] IXMLDOMNode *node,
53         [out, retval] IXMLDOMParseError **error);
54
55     [id(DISPID_XMLDOM_DOCUMENT3_IMPORTNODE)]
56     HRESULT importNode(
57         [in] IXMLDOMNode *node,
58         [in] VARIANT_BOOL deep,
59         [out, retval] IXMLDOMNode **clone);
60 }
61
62 [
63     uuid(88d96a07-f192-11d4-a65f-0040963251e5)
64 ]
65 coclass XMLSchemaCache60
66 {
67     [default] interface IXMLDOMSchemaCollection2;
68 }
69
70 [
71     uuid(88d96a0f-f192-11d4-a65f-0040963251e5)
72 ]
73 coclass MXXMLWriter60
74 {
75     [default] interface IMXWriter;
76
77     interface ISAXContentHandler;
78     interface ISAXDeclHandler;
79     interface ISAXDTDHandler;
80     interface ISAXErrorHandler;
81     interface ISAXLexicalHandler;
82
83     interface IVBSAXContentHandler;
84     interface IVBSAXDeclHandler;
85     interface IVBSAXDTDHandler;
86     interface IVBSAXErrorHandler;
87     interface IVBSAXLexicalHandler;
88 }
89
90 [
91     uuid(88d96a0c-f192-11d4-a65f-0040963251e5)
92 ]
93 coclass SAXXMLReader60
94 {
95     [default] interface IVBSAXXMLReader;
96     interface ISAXXMLReader;
97 }
98
99 [
100     uuid(88d96a0e-f192-11d4-a65f-0040963251e5)
101 ]
102 coclass SAXAttributes60
103 {
104     [default] interface IMXAttributes;
105     interface IVBSAXAttributes;
106     interface ISAXAttributes;
107 }