Module: wine Branch: refs/heads/master Commit: f05284501373a2b4b1b83e847eda606881f032a0 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=f05284501373a2b4b1b83e84...
Author: Jacek Caban jacek@codeweavers.com Date: Tue Jun 20 18:55:13 2006 +0200
mshtml: Added IPropertyNotifySink connection point.
---
dlls/mshtml/conpoint.c | 3 +++ dlls/mshtml/mshtml_private.h | 1 + 2 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/dlls/mshtml/conpoint.c b/dlls/mshtml/conpoint.c index 5384185..2ff410c 100644 --- a/dlls/mshtml/conpoint.c +++ b/dlls/mshtml/conpoint.c @@ -199,6 +199,9 @@ static HRESULT WINAPI ConnectionPointCon }else if(IsEqualGUID(&DIID_HTMLDocumentEvents2, riid)) { TRACE("(%p)->(DIID_HTMLDocumentEvents2 %p)\n", This, ppCP); *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) { diff --git a/dlls/mshtml/mshtml_private.h b/dlls/mshtml/mshtml_private.h index 654c0e2..508b717 100644 --- a/dlls/mshtml/mshtml_private.h +++ b/dlls/mshtml/mshtml_private.h @@ -86,6 +86,7 @@ typedef struct {
ConnectionPoint *cp_htmldocevents; ConnectionPoint *cp_htmldocevents2; + ConnectionPoint *cp_propnotif;
HTMLDOMNode *nodes; } HTMLDocument;