Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
92a93a5c
Commit
92a93a5c
authored
Dec 16, 2010
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Dec 16, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Use an iface instead of a vtbl pointer in dom_pi.
parent
8db9985f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
pi.c
dlls/msxml3/pi.c
+8
-8
No files found.
dlls/msxml3/pi.c
View file @
92a93a5c
...
...
@@ -40,13 +40,13 @@ WINE_DEFAULT_DEBUG_CHANNEL(msxml);
typedef
struct
_dom_pi
{
xmlnode
node
;
const
struct
IXMLDOMProcessingInstructionVtbl
*
lpVtbl
;
IXMLDOMProcessingInstruction
IXMLDOMProcessingInstruction_iface
;
LONG
ref
;
}
dom_pi
;
static
inline
dom_pi
*
impl_from_IXMLDOMProcessingInstruction
(
IXMLDOMProcessingInstruction
*
iface
)
{
return
(
dom_pi
*
)((
char
*
)
iface
-
FIELD_OFFSET
(
dom_pi
,
lpVtbl
)
);
return
CONTAINING_RECORD
(
iface
,
dom_pi
,
IXMLDOMProcessingInstruction_iface
);
}
static
HRESULT
WINAPI
dom_pi_QueryInterface
(
...
...
@@ -170,8 +170,8 @@ static HRESULT WINAPI dom_pi_Invoke(
hr
=
get_typeinfo
(
IXMLDOMProcessingInstruction_tid
,
&
typeinfo
);
if
(
SUCCEEDED
(
hr
))
{
hr
=
ITypeInfo_Invoke
(
typeinfo
,
&
(
This
->
lpVtbl
),
dispIdMember
,
wFlags
,
pDispParams
,
pVarResult
,
pExcepInfo
,
puArgErr
);
hr
=
ITypeInfo_Invoke
(
typeinfo
,
&
This
->
IXMLDOMProcessingInstruction_iface
,
dispIdMember
,
wFlags
,
pDispParams
,
pVarResult
,
pExcepInfo
,
puArgErr
);
ITypeInfo_Release
(
typeinfo
);
}
...
...
@@ -313,7 +313,7 @@ static HRESULT WINAPI dom_pi_get_attributes(
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
attributeMap
);
*
attributeMap
=
create_nodemap
((
IXMLDOMNode
*
)
&
This
->
lpVtbl
);
*
attributeMap
=
create_nodemap
((
IXMLDOMNode
*
)
&
This
->
IXMLDOMProcessingInstruction_iface
);
return
S_OK
;
}
...
...
@@ -668,12 +668,12 @@ IUnknown* create_pi( xmlNodePtr pi )
if
(
!
This
)
return
NULL
;
This
->
lpVtbl
=
&
dom_pi_vtbl
;
This
->
IXMLDOMProcessingInstruction_iface
.
lpVtbl
=
&
dom_pi_vtbl
;
This
->
ref
=
1
;
init_xmlnode
(
&
This
->
node
,
pi
,
(
IXMLDOMNode
*
)
&
This
->
lpVtbl
,
NULL
);
init_xmlnode
(
&
This
->
node
,
pi
,
(
IXMLDOMNode
*
)
&
This
->
IXMLDOMProcessingInstruction_iface
,
NULL
);
return
(
IUnknown
*
)
&
This
->
lpVtbl
;
return
(
IUnknown
*
)
&
This
->
IXMLDOMProcessingInstruction_iface
;
}
#endif
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