mshtml: Added IPropertyNotifySink connection point.
This commit is contained in:
parent
6f75b5e4ad
commit
f052845013
|
@ -199,6 +199,9 @@ static HRESULT WINAPI ConnectionPointContainer_FindConnectionPoint(IConnectionPo
|
|||
}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) {
|
||||
|
|
|
@ -86,6 +86,7 @@ typedef struct {
|
|||
|
||||
ConnectionPoint *cp_htmldocevents;
|
||||
ConnectionPoint *cp_htmldocevents2;
|
||||
ConnectionPoint *cp_propnotif;
|
||||
|
||||
HTMLDOMNode *nodes;
|
||||
} HTMLDocument;
|
||||
|
|
Loading…
Reference in New Issue