Austin English : shdocvw: Handle DISPID_AMBIENT_DLCONTROL case.
Module: wine Branch: master Commit: 583be32178a24d5714c814337cf3a147550c8519 URL: http://source.winehq.org/git/wine.git/?a=commit;h=583be32178a24d5714c814337c... Author: Austin English <austinenglish(a)gmail.com> Date: Mon Jun 22 01:39:20 2009 -0500 shdocvw: Handle DISPID_AMBIENT_DLCONTROL case. --- dlls/shdocvw/oleobject.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/dlls/shdocvw/oleobject.c b/dlls/shdocvw/oleobject.c index aab06d0..017e738 100644 --- a/dlls/shdocvw/oleobject.c +++ b/dlls/shdocvw/oleobject.c @@ -28,6 +28,7 @@ #include "shdocvw.h" #include "htiframe.h" #include "idispids.h" +#include "mshtmdid.h" WINE_DEFAULT_DEBUG_CHANNEL(shdocvw); @@ -723,6 +724,8 @@ static HRESULT WINAPI OleControl_OnAmbientPropertyChange(IOleControl *iface, DIS * BUT the Webbrowser OleControl object doesn't appear to do this. */ return S_OK; + case DISPID_AMBIENT_DLCONTROL: + return S_OK; case DISPID_AMBIENT_OFFLINEIFNOTCONNECTED: return on_offlineconnected_change(This); case DISPID_AMBIENT_SILENT:
participants (1)
-
Alexandre Julliard