quartz: Make it possible to just override IMediaSeeking::GetCurrentPosition.

This commit is contained in:
Maarten Lankhorst 2010-05-21 21:32:24 +02:00 committed by Alexandre Julliard
parent f830c544ac
commit 9c07be4399
1 changed files with 2 additions and 2 deletions

View File

@ -616,8 +616,8 @@ HRESULT WINAPI MediaSeekingImpl_GetPositions(IMediaSeeking * iface, LONGLONG * p
TRACE("(%p, %p)\n", pCurrent, pStop);
EnterCriticalSection(This->crst);
*pCurrent = This->llCurrent;
*pStop = This->llStop;
IMediaSeeking_GetCurrentPosition(iface, pCurrent);
IMediaSeeking_GetStopPosition(iface, pStop);
LeaveCriticalSection(This->crst);
return S_OK;