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
f0528450
Commit
f0528450
authored
Jun 20, 2006
by
Jacek Caban
Committed by
Alexandre Julliard
Jun 20, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added IPropertyNotifySink connection point.
parent
6f75b5e4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
conpoint.c
dlls/mshtml/conpoint.c
+3
-0
mshtml_private.h
dlls/mshtml/mshtml_private.h
+1
-0
No files found.
dlls/mshtml/conpoint.c
View file @
f0528450
...
@@ -199,6 +199,9 @@ static HRESULT WINAPI ConnectionPointContainer_FindConnectionPoint(IConnectionPo
...
@@ -199,6 +199,9 @@ static HRESULT WINAPI ConnectionPointContainer_FindConnectionPoint(IConnectionPo
}
else
if
(
IsEqualGUID
(
&
DIID_HTMLDocumentEvents2
,
riid
))
{
}
else
if
(
IsEqualGUID
(
&
DIID_HTMLDocumentEvents2
,
riid
))
{
TRACE
(
"(%p)->(DIID_HTMLDocumentEvents2 %p)
\n
"
,
This
,
ppCP
);
TRACE
(
"(%p)->(DIID_HTMLDocumentEvents2 %p)
\n
"
,
This
,
ppCP
);
*
ppCP
=
CONPOINT
(
This
->
cp_htmldocevents2
);
*
ppCP
=
CONPOINT
(
This
->
cp_htmldocevents2
);
}
else
if
(
IsEqualGUID
(
&
IID_IPropertyNotifySink
,
riid
))
{
TRACE
(
"(%p)->(IID_IPropertyNotifySink %p)
\n
"
,
This
,
ppCP
);
*
ppCP
=
CONPOINT
(
This
->
cp_htmldocevents
);
}
}
if
(
*
ppCP
)
{
if
(
*
ppCP
)
{
...
...
dlls/mshtml/mshtml_private.h
View file @
f0528450
...
@@ -86,6 +86,7 @@ typedef struct {
...
@@ -86,6 +86,7 @@ typedef struct {
ConnectionPoint
*
cp_htmldocevents
;
ConnectionPoint
*
cp_htmldocevents
;
ConnectionPoint
*
cp_htmldocevents2
;
ConnectionPoint
*
cp_htmldocevents2
;
ConnectionPoint
*
cp_propnotif
;
HTMLDOMNode
*
nodes
;
HTMLDOMNode
*
nodes
;
}
HTMLDocument
;
}
HTMLDocument
;
...
...
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