msxml3: Add a guard around DOMNodeType just like in the PSDK, so that we can include version 2 and version 3 msxml headers simultaneously.
This commit is contained in:
parent
a697fe51e0
commit
1615497233
|
@ -47,6 +47,7 @@ interface IXTLRuntime;
|
|||
interface IXSLTemplate;
|
||||
interface IXSLProcessor;
|
||||
|
||||
cpp_quote("#ifndef __WIDL_XMLDOM_H")
|
||||
typedef enum tagDOMNodeType
|
||||
{
|
||||
NODE_INVALID = 0,
|
||||
|
@ -63,6 +64,7 @@ typedef enum tagDOMNodeType
|
|||
NODE_DOCUMENT_FRAGMENT = 11,
|
||||
NODE_NOTATION = 12
|
||||
} DOMNodeType;
|
||||
cpp_quote("#endif /* __WIDL_XMLDOM_H */")
|
||||
|
||||
[
|
||||
local,
|
||||
|
|
Loading…
Reference in New Issue