Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
88e3669b
Commit
88e3669b
authored
Jul 28, 2005
by
Mike McCormack
Committed by
Alexandre Julliard
Jul 28, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a definition for the IXMLDOMElement interface.
parent
5da1c0ad
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
46 additions
and
2 deletions
+46
-2
xmldom.idl
include/xmldom.idl
+46
-2
No files found.
include/xmldom.idl
View file @
88e3669b
...
@@ -76,7 +76,7 @@ interface IXMLDOMNode : IDispatch
...
@@ -76,7 +76,7 @@ interface IXMLDOMNode : IDispatch
HRESULT
nodeValue
(
[
out
,
retval
]
VARIANT
*
value
)
;
HRESULT
nodeValue
(
[
out
,
retval
]
VARIANT
*
value
)
;
[
propput
,
id
(
DISPID_DOM_NODE_NODEVALUE
)
]
[
propput
,
id
(
DISPID_DOM_NODE_NODEVALUE
)
]
HRESULT
no
v
eValue
(
[
in
]
VARIANT
value
)
;
HRESULT
no
d
eValue
(
[
in
]
VARIANT
value
)
;
[
propget
,
id
(
DISPID_DOM_NODE_NODETYPE
)
]
[
propget
,
id
(
DISPID_DOM_NODE_NODETYPE
)
]
HRESULT
nodeType
(
[
out
,
retval
]
DOMNodeType
*
type
)
;
HRESULT
nodeType
(
[
out
,
retval
]
DOMNodeType
*
type
)
;
...
@@ -477,7 +477,51 @@ interface IXMLDOMAttribute : IXMLDOMNode
...
@@ -477,7 +477,51 @@ interface IXMLDOMAttribute : IXMLDOMNode
HRESULT
value
(
[
in
]
VARIANT
attributeValue
)
;
HRESULT
value
(
[
in
]
VARIANT
attributeValue
)
;
}
;
}
;
/*
FIXME
:
interface
IXMLDOMElement
*/
[
local
,
object
,
odl
,
dual
,
/*
nonextensible
,
*/
oleautomation
,
uuid
(
2933b
f86
-
7b36
-
11
d2
-
b20e
-
00
c04f983e60
),
pointer_default
(
unique
)
]
interface
IXMLDOMElement
:
IXMLDOMNode
{
[
propget
,
id
(
DISPID_DOM_ELEMENT_GETTAGNAME
)
]
HRESULT
tagName
(
[
out
,
retval
]
BSTR
*
tagName
)
;
[
id
(
DISPID_DOM_ELEMENT_GETATTRIBUTE
)
]
HRESULT
getAttribute
(
[
in
]
BSTR
name
,
[
out
,
retval
]
VARIANT
*
value
)
;
[
id
(
DISPID_DOM_ELEMENT_SETATTRIBUTE
)
]
HRESULT
setAttribute
(
[
in
]
BSTR
name
,
[
in
]
VARIANT
value
)
;
[
id
(
DISPID_DOM_ELEMENT_REMOVEATTRIBUTE
)
]
HRESULT
removeAttribute
(
[
in
]
BSTR
name
)
;
[
id
(
DISPID_DOM_ELEMENT_GETATTRIBUTENODE
)
]
HRESULT
getAttributeNode
(
[
in
]
BSTR
name
,
[
out
,
retval
]
IXMLDOMAttribute
**
attributeNode
)
;
[
id
(
DISPID_DOM_ELEMENT_SETATTRIBUTENODE
)
]
HRESULT
setAttributeNode
(
[
in
]
IXMLDOMAttribute
*
DOMAttribute
,
[
out
,
retval
]
IXMLDOMAttribute
**
attributeNode
)
;
[
id
(
DISPID_DOM_ELEMENT_REMOVEATTRIBUTENODE
)
]
HRESULT
removeAttributeNode
(
[
in
]
IXMLDOMAttribute
*
DOMAttribute
,
[
out
,
retval
]
IXMLDOMAttribute
**
attributeNode
)
;
[
id
(
DISPID_DOM_ELEMENT_GETELEMENTSBYTAGNAME
)
]
HRESULT
getElementsByTagName
(
[
in
]
BSTR
tagName
,
[
out
,
retval
]
IXMLDOMNodeList
**
resultList
)
;
[
id
(
DISPID_DOM_ELEMENT_NORMALIZE
)
]
HRESULT
normalize
()
;
}
;
[
[
local
,
local
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment