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
1b11ffaa
Commit
1b11ffaa
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 domfrag.
parent
42bdbab6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
docfrag.c
dlls/msxml3/docfrag.c
+7
-7
No files found.
dlls/msxml3/docfrag.c
View file @
1b11ffaa
...
...
@@ -40,13 +40,13 @@ WINE_DEFAULT_DEBUG_CHANNEL(msxml);
typedef
struct
_domfrag
{
xmlnode
node
;
const
struct
IXMLDOMDocumentFragmentVtbl
*
lpVtbl
;
IXMLDOMDocumentFragment
IXMLDOMDocumentFragment_iface
;
LONG
ref
;
}
domfrag
;
static
inline
domfrag
*
impl_from_IXMLDOMDocumentFragment
(
IXMLDOMDocumentFragment
*
iface
)
{
return
(
domfrag
*
)((
char
*
)
iface
-
FIELD_OFFSET
(
domfrag
,
lpVtbl
)
);
return
CONTAINING_RECORD
(
iface
,
domfrag
,
IXMLDOMDocumentFragment_iface
);
}
static
HRESULT
WINAPI
domfrag_QueryInterface
(
...
...
@@ -170,8 +170,8 @@ static HRESULT WINAPI domfrag_Invoke(
hr
=
get_typeinfo
(
IXMLDOMDocumentFragment_tid
,
&
typeinfo
);
if
(
SUCCEEDED
(
hr
))
{
hr
=
ITypeInfo_Invoke
(
typeinfo
,
&
(
This
->
lpVtbl
),
dispIdMember
,
wFlags
,
pDispParams
,
pVarResult
,
pExcepInfo
,
puArgErr
);
hr
=
ITypeInfo_Invoke
(
typeinfo
,
&
This
->
IXMLDOMDocumentFragment_iface
,
dispIdMember
,
wFlags
,
pDispParams
,
pVarResult
,
pExcepInfo
,
puArgErr
);
ITypeInfo_Release
(
typeinfo
);
}
...
...
@@ -588,12 +588,12 @@ IUnknown* create_doc_fragment( xmlNodePtr fragment )
if
(
!
This
)
return
NULL
;
This
->
lpVtbl
=
&
domfrag_vtbl
;
This
->
IXMLDOMDocumentFragment_iface
.
lpVtbl
=
&
domfrag_vtbl
;
This
->
ref
=
1
;
init_xmlnode
(
&
This
->
node
,
fragment
,
(
IXMLDOMNode
*
)
&
This
->
lpVtbl
,
NULL
);
init_xmlnode
(
&
This
->
node
,
fragment
,
(
IXMLDOMNode
*
)
&
This
->
IXMLDOMDocumentFragment_iface
,
NULL
);
return
(
IUnknown
*
)
&
This
->
lpVtbl
;
return
(
IUnknown
*
)
&
This
->
IXMLDOMDocumentFragment_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