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
d383e84e
Commit
d383e84e
authored
Dec 28, 2009
by
Piotr Caban
Committed by
Alexandre Julliard
Dec 29, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added IDispatch ConnectionPoint.
parent
be2a86cb
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
0 deletions
+3
-0
htmldoc.c
dlls/mshtml/htmldoc.c
+1
-0
mshtml_private.h
dlls/mshtml/mshtml_private.h
+1
-0
htmldoc.c
dlls/mshtml/tests/htmldoc.c
+1
-0
No files found.
dlls/mshtml/htmldoc.c
View file @
d383e84e
...
...
@@ -1795,6 +1795,7 @@ static void init_doc(HTMLDocument *doc, IUnknown *unk_impl, IDispatchEx *dispex)
HTMLDocument_Hlink_Init
(
doc
);
ConnectionPointContainer_Init
(
&
doc
->
cp_container
,
(
IUnknown
*
)
HTMLDOC
(
doc
));
ConnectionPoint_Init
(
&
doc
->
cp_dispatch
,
&
doc
->
cp_container
,
&
IID_IDispatch
,
NULL
);
ConnectionPoint_Init
(
&
doc
->
cp_propnotif
,
&
doc
->
cp_container
,
&
IID_IPropertyNotifySink
,
NULL
);
ConnectionPoint_Init
(
&
doc
->
cp_htmldocevents
,
&
doc
->
cp_container
,
&
DIID_HTMLDocumentEvents
,
&
HTMLDocumentEvents_data
);
ConnectionPoint_Init
(
&
doc
->
cp_htmldocevents2
,
&
doc
->
cp_container
,
&
DIID_HTMLDocumentEvents2
,
NULL
);
...
...
dlls/mshtml/mshtml_private.h
View file @
d383e84e
...
...
@@ -340,6 +340,7 @@ struct HTMLDocument {
ConnectionPoint
cp_htmldocevents
;
ConnectionPoint
cp_htmldocevents2
;
ConnectionPoint
cp_propnotif
;
ConnectionPoint
cp_dispatch
;
IOleAdviseHolder
*
advise_holder
;
};
...
...
dlls/mshtml/tests/htmldoc.c
View file @
d383e84e
...
...
@@ -2953,6 +2953,7 @@ static void test_ConnectionPointContainer(IUnknown *unk)
if
(
FAILED
(
hres
))
return
;
test_ConnectionPoint
(
container
,
&
IID_IDispatch
);
test_ConnectionPoint
(
container
,
&
IID_IPropertyNotifySink
);
test_ConnectionPoint
(
container
,
&
DIID_HTMLDocumentEvents
);
test_ConnectionPoint
(
container
,
&
DIID_HTMLDocumentEvents2
);
...
...
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