quartz: Implement IMediaPosition::put_CurrentPosition.

This commit is contained in:
Maarten Lankhorst 2008-09-11 12:45:57 +02:00 committed by Alexandre Julliard
parent ed8b219c68
commit f0f00d1625
1 changed files with 4 additions and 2 deletions

View File

@ -2570,8 +2570,10 @@ static HRESULT WINAPI MediaPosition_get_Duration(IMediaPosition * iface, REFTIME
}
static HRESULT WINAPI MediaPosition_put_CurrentPosition(IMediaPosition * iface, REFTIME llTime){
FIXME("(%p)->(%f) stub!\n", iface, llTime);
return E_NOTIMPL;
ICOM_THIS_MULTI(IFilterGraphImpl, IMediaPosition_vtbl, iface);
LONGLONG reftime = llTime;
return IMediaSeeking_SetPositions((IMediaSeeking *)&This->IMediaSeeking_vtbl, &reftime, AM_SEEKING_AbsolutePositioning, NULL, AM_SEEKING_NoPositioning);
}
static HRESULT WINAPI MediaPosition_get_CurrentPosition(IMediaPosition * iface, REFTIME *pllTime){