mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 20:59:54 +00:00
shdocvw: Added GetExternal implementation.
This commit is contained in:
parent
a84520169f
commit
e23c5083f5
@ -406,7 +406,13 @@ static HRESULT WINAPI DocHostUIHandler_GetExternal(IDocHostUIHandler2 *iface,
|
|||||||
IDispatch **ppDispatch)
|
IDispatch **ppDispatch)
|
||||||
{
|
{
|
||||||
DocHost *This = DOCHOSTUI_THIS(iface);
|
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;
|
return E_NOTIMPL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user