Commit 16154972 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

msxml3: Add a guard around DOMNodeType just like in the PSDK, so that we can…

msxml3: Add a guard around DOMNodeType just like in the PSDK, so that we can include version 2 and version 3 msxml headers simultaneously.
parent a697fe51
...@@ -47,6 +47,7 @@ interface IXTLRuntime; ...@@ -47,6 +47,7 @@ interface IXTLRuntime;
interface IXSLTemplate; interface IXSLTemplate;
interface IXSLProcessor; interface IXSLProcessor;
cpp_quote("#ifndef __WIDL_XMLDOM_H")
typedef enum tagDOMNodeType typedef enum tagDOMNodeType
{ {
NODE_INVALID = 0, NODE_INVALID = 0,
...@@ -63,6 +64,7 @@ typedef enum tagDOMNodeType ...@@ -63,6 +64,7 @@ typedef enum tagDOMNodeType
NODE_DOCUMENT_FRAGMENT = 11, NODE_DOCUMENT_FRAGMENT = 11,
NODE_NOTATION = 12 NODE_NOTATION = 12
} DOMNodeType; } DOMNodeType;
cpp_quote("#endif /* __WIDL_XMLDOM_H */")
[ [
local, local,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment