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
98d5a2e7
Commit
98d5a2e7
authored
Dec 30, 2010
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Dec 30, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: COM cleanup for the IHTMLElement3 iface.
parent
a75e2b27
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
3 deletions
+2
-3
htmlelem.c
dlls/mshtml/htmlelem.c
+1
-1
htmlelem3.c
dlls/mshtml/htmlelem3.c
+0
-0
mshtml_private.h
dlls/mshtml/mshtml_private.h
+1
-2
No files found.
dlls/mshtml/htmlelem.c
View file @
98d5a2e7
...
...
@@ -1616,7 +1616,7 @@ HRESULT HTMLElement_QI(HTMLDOMNode *iface, REFIID riid, void **ppv)
*
ppv
=
&
This
->
IHTMLElement2_iface
;
}
else
if
(
IsEqualGUID
(
&
IID_IHTMLElement3
,
riid
))
{
TRACE
(
"(%p)->(IID_IHTMLElement3 %p)
\n
"
,
This
,
ppv
);
*
ppv
=
HTMLELEM3
(
This
)
;
*
ppv
=
&
This
->
IHTMLElement3_iface
;
}
else
if
(
IsEqualGUID
(
&
IID_IConnectionPointContainer
,
riid
))
{
TRACE
(
"(%p)->(IID_IConnectionPointContainer %p)
\n
"
,
This
,
ppv
);
*
ppv
=
CONPTCONT
(
&
This
->
cp_container
);
...
...
dlls/mshtml/htmlelem3.c
View file @
98d5a2e7
This diff is collapsed.
Click to expand it.
dlls/mshtml/mshtml_private.h
View file @
98d5a2e7
...
...
@@ -551,7 +551,7 @@ typedef struct {
IHTMLElement
IHTMLElement_iface
;
IHTMLElement2
IHTMLElement2_iface
;
const
IHTMLElement3Vtbl
*
lpHTMLElement3Vtbl
;
IHTMLElement3
IHTMLElement3_iface
;
nsIDOMHTMLElement
*
nselem
;
}
HTMLElement
;
...
...
@@ -642,7 +642,6 @@ struct HTMLDocumentNode {
#define STATUSCLB(x) ((IBindStatusCallback*) &(x)->lpBindStatusCallbackVtbl)
#define BINDINFO(x) ((IInternetBindInfo*) &(x)->lpInternetBindInfoVtbl);
#define HTMLELEM3(x) ((IHTMLElement3*) &(x)->lpHTMLElement3Vtbl)
#define HTMLDOMNODE(x) ((IHTMLDOMNode*) &(x)->lpHTMLDOMNodeVtbl)
#define HTMLDOMNODE2(x) ((IHTMLDOMNode2*) &(x)->lpHTMLDOMNode2Vtbl)
...
...
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