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
302fb5f1
Commit
302fb5f1
authored
Jun 22, 2010
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jun 22, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Use vtable macros consistently, depending on pointer type.
parent
79b6351c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
domdoc.c
dlls/msxml3/domdoc.c
+8
-8
No files found.
dlls/msxml3/domdoc.c
View file @
302fb5f1
...
...
@@ -1060,7 +1060,7 @@ static HRESULT WINAPI domdoc_createElement(
V_VT
(
&
type
)
=
VT_I1
;
V_I1
(
&
type
)
=
NODE_ELEMENT
;
hr
=
IXMLDOMDocument_createNode
(
iface
,
type
,
tagname
,
NULL
,
&
node
);
hr
=
IXMLDOMDocument
2
_createNode
(
iface
,
type
,
tagname
,
NULL
,
&
node
);
if
(
hr
==
S_OK
)
{
IXMLDOMNode_QueryInterface
(
node
,
&
IID_IXMLDOMElement
,
(
void
**
)
element
);
...
...
@@ -1089,7 +1089,7 @@ static HRESULT WINAPI domdoc_createDocumentFragment(
V_VT
(
&
type
)
=
VT_I1
;
V_I1
(
&
type
)
=
NODE_DOCUMENT_FRAGMENT
;
hr
=
IXMLDOMDocument_createNode
(
iface
,
type
,
NULL
,
NULL
,
&
node
);
hr
=
IXMLDOMDocument
2
_createNode
(
iface
,
type
,
NULL
,
NULL
,
&
node
);
if
(
hr
==
S_OK
)
{
IXMLDOMNode_QueryInterface
(
node
,
&
IID_IXMLDOMDocumentFragment
,
(
void
**
)
frag
);
...
...
@@ -1249,7 +1249,7 @@ static HRESULT WINAPI domdoc_createAttribute(
V_VT
(
&
type
)
=
VT_I1
;
V_I1
(
&
type
)
=
NODE_ATTRIBUTE
;
hr
=
IXMLDOMDocument_createNode
(
iface
,
type
,
name
,
NULL
,
&
node
);
hr
=
IXMLDOMDocument
2
_createNode
(
iface
,
type
,
name
,
NULL
,
&
node
);
if
(
hr
==
S_OK
)
{
IXMLDOMNode_QueryInterface
(
node
,
&
IID_IXMLDOMAttribute
,
(
void
**
)
attribute
);
...
...
@@ -1747,23 +1747,23 @@ static HRESULT WINAPI domdoc_save(
if
(
V_VT
(
&
destination
)
==
VT_UNKNOWN
)
{
IUnknown
*
pUnk
=
V_UNKNOWN
(
&
destination
);
IXMLDOMDocument
*
pDocument
;
IXMLDOMDocument
2
*
pDocument
;
ret
=
I
XMLDOMDocument
_QueryInterface
(
pUnk
,
&
IID_IXMLDOMDocument2
,
(
void
**
)
&
pDocument
);
ret
=
I
Unknown
_QueryInterface
(
pUnk
,
&
IID_IXMLDOMDocument2
,
(
void
**
)
&
pDocument
);
if
(
ret
==
S_OK
)
{
BSTR
bXML
;
VARIANT_BOOL
bSuccessful
;
ret
=
IXMLDOMDocument_get_xml
(
iface
,
&
bXML
);
ret
=
IXMLDOMDocument
2
_get_xml
(
iface
,
&
bXML
);
if
(
ret
==
S_OK
)
{
ret
=
IXMLDOMDocument_loadXML
(
pDocument
,
bXML
,
&
bSuccessful
);
ret
=
IXMLDOMDocument
2
_loadXML
(
pDocument
,
bXML
,
&
bSuccessful
);
SysFreeString
(
bXML
);
}
IXMLDOMDocument_Release
(
pDocument
);
IXMLDOMDocument
2
_Release
(
pDocument
);
}
TRACE
(
"ret %d
\n
"
,
ret
);
...
...
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