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
dd9a2eff
Commit
dd9a2eff
authored
Nov 05, 2011
by
Nikolay Sivov
Committed by
Alexandre Julliard
Nov 14, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Implement get_nodeTypeValue() for attributes without a type.
parent
2e5f73e4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
3 deletions
+32
-3
attribute.c
dlls/msxml3/attribute.c
+32
-3
No files found.
dlls/msxml3/attribute.c
View file @
dd9a2eff
...
...
@@ -448,11 +448,40 @@ static HRESULT WINAPI domattr_get_definition(
static
HRESULT
WINAPI
domattr_get_nodeTypedValue
(
IXMLDOMAttribute
*
iface
,
VARIANT
*
va
r1
)
VARIANT
*
va
lue
)
{
domattr
*
This
=
impl_from_IXMLDOMAttribute
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
var1
);
return
return_null_var
(
var1
);
IXMLDOMDocument
*
doc
;
HRESULT
hr
;
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
value
);
hr
=
IXMLDOMAttribute_get_ownerDocument
(
iface
,
&
doc
);
if
(
hr
==
S_OK
)
{
IXMLDOMDocument2
*
doc2
;
hr
=
IXMLDOMDocument_QueryInterface
(
doc
,
&
IID_IXMLDOMDocument2
,
(
void
**
)
&
doc2
);
IXMLDOMDocument_Release
(
doc
);
if
(
hr
==
S_OK
)
{
VARIANT
schemas
;
hr
=
IXMLDOMDocument2_get_schemas
(
doc2
,
&
schemas
);
IXMLDOMDocument2_Release
(
doc2
);
if
(
hr
!=
S_OK
)
return
IXMLDOMAttribute_get_value
(
iface
,
value
);
else
{
FIXME
(
"need to query schema for attribute type
\n
"
);
VariantClear
(
&
schemas
);
}
}
}
return
return_null_var
(
value
);
}
static
HRESULT
WINAPI
domattr_put_nodeTypedValue
(
...
...
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