mshtml: Added IHTMLWindow::get_window implementation.
This commit is contained in:
parent
c41d74167e
commit
ebb4a9b197
|
@ -335,8 +335,13 @@ static HRESULT WINAPI HTMLWindow2_get_top(IHTMLWindow2 *iface, IHTMLWindow2 **p)
|
|||
static HRESULT WINAPI HTMLWindow2_get_window(IHTMLWindow2 *iface, IHTMLWindow2 **p)
|
||||
{
|
||||
HTMLWindow *This = HTMLWINDOW2_THIS(iface);
|
||||
FIXME("(%p)->(%p)\n", This, p);
|
||||
return E_NOTIMPL;
|
||||
|
||||
TRACE("(%p)->(%p)\n", This, p);
|
||||
|
||||
/* FIXME: We should return kind of proxy window here. */
|
||||
IHTMLWindow2_AddRef(HTMLWINDOW2(This));
|
||||
*p = HTMLWINDOW2(This);
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI HTMLWindow2_navigate(IHTMLWindow2 *iface, BSTR url)
|
||||
|
|
Loading…
Reference in New Issue