shdocvw: Added get_HWND implementation.

This commit is contained in:
Jacek Caban 2006-04-28 20:53:52 +02:00 committed by Alexandre Julliard
parent 9d9b909466
commit 8cde167fd9
1 changed files with 5 additions and 2 deletions

View File

@ -466,8 +466,11 @@ static HRESULT WINAPI WebBrowser_get_Name(IWebBrowser2 *iface, BSTR *Name)
static HRESULT WINAPI WebBrowser_get_HWND(IWebBrowser2 *iface, long *pHWND) static HRESULT WINAPI WebBrowser_get_HWND(IWebBrowser2 *iface, long *pHWND)
{ {
WebBrowser *This = WEBBROWSER_THIS(iface); 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) static HRESULT WINAPI WebBrowser_get_FullName(IWebBrowser2 *iface, BSTR *FullName)