shdocvw: Added get_HWND implementation.
This commit is contained in:
parent
9d9b909466
commit
8cde167fd9
|
@ -466,8 +466,11 @@ static HRESULT WINAPI WebBrowser_get_Name(IWebBrowser2 *iface, BSTR *Name)
|
|||
static HRESULT WINAPI WebBrowser_get_HWND(IWebBrowser2 *iface, long *pHWND)
|
||||
{
|
||||
WebBrowser *This = WEBBROWSER_THIS(iface);
|
||||
FIXME("(%p)->(%p)\n", This, pHWND);
|
||||
return E_NOTIMPL;
|
||||
|
||||
TRACE("(%p)->(%p)\n", This, pHWND);
|
||||
|
||||
*pHWND = 0;
|
||||
return E_FAIL;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI WebBrowser_get_FullName(IWebBrowser2 *iface, BSTR *FullName)
|
||||
|
|
Loading…
Reference in New Issue