Commit c56389ea authored by Maarten Lankhorst's avatar Maarten Lankhorst Committed by Alexandre Julliard

quartz: Implement graph MediaSeeking GetPositions.

parent 1544e523
......@@ -2025,10 +2025,14 @@ static HRESULT WINAPI MediaSeeking_GetPositions(IMediaSeeking *iface,
LONGLONG *pCurrent,
LONGLONG *pStop) {
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaSeeking_vtbl, iface);
HRESULT hr;
FIXME("(%p/%p)->(%p, %p): stub !!!\n", This, iface, pCurrent, pStop);
TRACE("(%p/%p)->(%p, %p)\n", This, iface, pCurrent, pStop);
hr = IMediaSeeking_GetCurrentPosition(iface, pCurrent);
if (SUCCEEDED(hr))
hr = IMediaSeeking_GetStopPosition(iface, pStop);
return S_OK;
return hr;
}
static HRESULT WINAPI MediaSeeking_GetAvailable(IMediaSeeking *iface,
......
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