Module: wine Branch: master Commit: e23c5083f52229cdd0a41b1c532a1f3e4ec641ac URL: http://source.winehq.org/git/wine.git/?a=commit;h=e23c5083f52229cdd0a41b1c53...
Author: Jacek Caban jacek@codeweavers.com Date: Wed Aug 1 01:00:27 2007 +0200
shdocvw: Added GetExternal implementation.
---
dlls/shdocvw/dochost.c | 8 +++++++- 1 files changed, 7 insertions(+), 1 deletions(-)
diff --git a/dlls/shdocvw/dochost.c b/dlls/shdocvw/dochost.c index f26447d..1637cc3 100644 --- a/dlls/shdocvw/dochost.c +++ b/dlls/shdocvw/dochost.c @@ -406,7 +406,13 @@ static HRESULT WINAPI DocHostUIHandler_GetExternal(IDocHostUIHandler2 *iface, IDispatch **ppDispatch) { DocHost *This = DOCHOSTUI_THIS(iface); - FIXME("(%p)->(%p)\n", This, ppDispatch); + + TRACE("(%p)->(%p)\n", This, ppDispatch); + + if(This->hostui) + return IDocHostUIHandler_GetExternal(This->hostui, ppDispatch); + + FIXME("default action not implemented\n"); return E_NOTIMPL; }