Commit ed5bf860 authored by Vijay Kiran Kamuju's avatar Vijay Kiran Kamuju Committed by Alexandre Julliard

dhtmled.ocx: Implement IViewObjectEx_GetViewStatus function.

parent 0dbe8346
...@@ -1336,9 +1336,10 @@ static HRESULT WINAPI ViewObjectEx_GetViewStatus(IViewObjectEx *iface, DWORD *st ...@@ -1336,9 +1336,10 @@ static HRESULT WINAPI ViewObjectEx_GetViewStatus(IViewObjectEx *iface, DWORD *st
{ {
DHTMLEditImpl *This = impl_from_IViewObjectEx(iface); DHTMLEditImpl *This = impl_from_IViewObjectEx(iface);
FIXME("(%p)->(%p)\n", This, status); TRACE("(%p)->(%p)\n", This, status);
return E_NOTIMPL; *status = VIEWSTATUS_OPAQUE | VIEWSTATUS_SOLIDBKGND;
return S_OK;
} }
static HRESULT WINAPI ViewObjectEx_QueryHitPoint(IViewObjectEx *iface, DWORD aspect, const RECT *bounds, static HRESULT WINAPI ViewObjectEx_QueryHitPoint(IViewObjectEx *iface, DWORD aspect, const RECT *bounds,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment