shdocvw: Added GetExternal implementation.

This commit is contained in:
Jacek Caban 2007-08-01 01:00:27 +02:00 committed by Alexandre Julliard
parent a84520169f
commit e23c5083f5
1 changed files with 7 additions and 1 deletions

View File

@ -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;
}