static HRESULT WINAPI HTMLDocument_open(IHTMLDocument2 *iface, BSTR url, VARIANT name,
VARIANT features, VARIANT replace, IDispatch **pomWindowResult)
{
- /* Etersoft hack for eterbug #993
- * change realisation of function
- */
- TRACE("(%p)->(%s %p)\n", iface, debugstr_w(url), pomWindowResult);
- return IHTMLDocument2_QueryInterface(iface, &IID_IDispatch, (void**)pomWindowResult);
-#if 0
HTMLDocument *This = HTMLDOC_THIS(iface);
nsresult nsres;
*pomWindowResult = (IDispatch*)HTMLWINDOW2(This->window);
IHTMLWindow2_AddRef(HTMLWINDOW2(This->window));
return S_OK;
-#endif
}
static HRESULT WINAPI HTMLDocument_close(IHTMLDocument2 *iface)