d3d9: Merge vertex and pixel shader implementations into a single file.
[wine/wine-gecko.git] / include / msxml6.idl
blob59c9d6d91677a2b9682e180ddbea7ed67098e8bc
1 /*
2 * Copyright (C) 2010 Nikolay Sivov 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
20 #include <msxml6did.h>
21 import "msxml2.idl";
24 uuid(88d96a05-f192-11d4-a65f-0040963251e5)
26 coclass DOMDocument60
28 [default] interface IXMLDOMDocument3;
29 [default, source] dispinterface XMLDOMDocumentEvents;
33 uuid(88d96a06-f192-11d4-a65f-0040963251e5),
35 coclass FreeThreadedDOMDocument60
37 [default] interface IXMLDOMDocument3;
38 [default, source] dispinterface XMLDOMDocumentEvents;
42 local,
43 object,
44 dual,
45 uuid(2933bf96-7b36-11d2-b20e-00c04f983e60),
46 oleautomation,
48 interface IXMLDOMDocument3 : IXMLDOMDocument2
50 [id(DISPID_XMLDOM_DOCUMENT3_VALIDATENODE)]
51 HRESULT validateNode(
52 [in] IXMLDOMNode *node,
53 [out, retval] IXMLDOMParseError **error);
55 [id(DISPID_XMLDOM_DOCUMENT3_IMPORTNODE)]
56 HRESULT importNode(
57 [in] IXMLDOMNode *node,
58 [in] VARIANT_BOOL deep,
59 [out, retval] IXMLDOMNode **clone);