Commit e23c5083 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

shdocvw: Added GetExternal implementation.

parent a8452016
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment