mirror of
https://github.com/reactos/wine.git
synced 2024-11-24 12:20:07 +00:00
quartz: Remove redundant traces.
This commit is contained in:
parent
01f07fe428
commit
80b33cf38b
@ -351,7 +351,7 @@ static ULONG WINAPI FilterGraph2_AddRef(IFilterGraph2 *iface)
|
|||||||
{
|
{
|
||||||
IFilterGraphImpl *This = impl_from_IFilterGraph2(iface);
|
IFilterGraphImpl *This = impl_from_IFilterGraph2(iface);
|
||||||
|
|
||||||
TRACE("(%p/%p)->() calling FilterGraph AddRef\n", This, iface);
|
TRACE("(%p/%p)->()\n", This, iface);
|
||||||
|
|
||||||
return IUnknown_AddRef(This->outer_unk);
|
return IUnknown_AddRef(This->outer_unk);
|
||||||
}
|
}
|
||||||
@ -360,7 +360,7 @@ static ULONG WINAPI FilterGraph2_Release(IFilterGraph2 *iface)
|
|||||||
{
|
{
|
||||||
IFilterGraphImpl *This = impl_from_IFilterGraph2(iface);
|
IFilterGraphImpl *This = impl_from_IFilterGraph2(iface);
|
||||||
|
|
||||||
TRACE("(%p/%p)->() calling FilterGraph Release\n", This, iface);
|
TRACE("(%p/%p)->()\n", This, iface);
|
||||||
|
|
||||||
return IUnknown_Release(This->outer_unk);
|
return IUnknown_Release(This->outer_unk);
|
||||||
}
|
}
|
||||||
@ -2638,22 +2638,26 @@ static ULONG WINAPI MediaPosition_Release(IMediaPosition *iface)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*** IDispatch methods ***/
|
/*** IDispatch methods ***/
|
||||||
static HRESULT WINAPI MediaPosition_GetTypeInfoCount(IMediaPosition *iface, UINT* pctinfo){
|
static HRESULT WINAPI MediaPosition_GetTypeInfoCount(IMediaPosition *iface, UINT* pctinfo)
|
||||||
|
{
|
||||||
FIXME("(%p) stub!\n", iface);
|
FIXME("(%p) stub!\n", iface);
|
||||||
return E_NOTIMPL;
|
return E_NOTIMPL;
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT WINAPI MediaPosition_GetTypeInfo(IMediaPosition *iface, UINT iTInfo, LCID lcid, ITypeInfo** ppTInfo){
|
static HRESULT WINAPI MediaPosition_GetTypeInfo(IMediaPosition *iface, UINT iTInfo, LCID lcid, ITypeInfo** ppTInfo)
|
||||||
|
{
|
||||||
FIXME("(%p) stub!\n", iface);
|
FIXME("(%p) stub!\n", iface);
|
||||||
return E_NOTIMPL;
|
return E_NOTIMPL;
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT WINAPI MediaPosition_GetIDsOfNames(IMediaPosition* iface, REFIID riid, LPOLESTR* rgszNames, UINT cNames, LCID lcid, DISPID* rgDispId){
|
static HRESULT WINAPI MediaPosition_GetIDsOfNames(IMediaPosition* iface, REFIID riid, LPOLESTR* rgszNames, UINT cNames, LCID lcid, DISPID* rgDispId)
|
||||||
|
{
|
||||||
FIXME("(%p) stub!\n", iface);
|
FIXME("(%p) stub!\n", iface);
|
||||||
return E_NOTIMPL;
|
return E_NOTIMPL;
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT WINAPI MediaPosition_Invoke(IMediaPosition* iface, DISPID dispIdMember, REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS* pDispParams, VARIANT* pVarResult, EXCEPINFO* pExcepInfo, UINT* puArgErr){
|
static HRESULT WINAPI MediaPosition_Invoke(IMediaPosition* iface, DISPID dispIdMember, REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS* pDispParams, VARIANT* pVarResult, EXCEPINFO* pExcepInfo, UINT* puArgErr)
|
||||||
|
{
|
||||||
FIXME("(%p) stub!\n", iface);
|
FIXME("(%p) stub!\n", iface);
|
||||||
return E_NOTIMPL;
|
return E_NOTIMPL;
|
||||||
}
|
}
|
||||||
@ -2753,12 +2757,14 @@ static HRESULT WINAPI MediaPosition_put_StopTime(IMediaPosition * iface, REFTIME
|
|||||||
&reftime, AM_SEEKING_AbsolutePositioning);
|
&reftime, AM_SEEKING_AbsolutePositioning);
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT WINAPI MediaPosition_get_PrerollTime(IMediaPosition * iface, REFTIME *pllTime){
|
static HRESULT WINAPI MediaPosition_get_PrerollTime(IMediaPosition * iface, REFTIME *pllTime)
|
||||||
|
{
|
||||||
FIXME("(%p)->(%p) stub!\n", iface, pllTime);
|
FIXME("(%p)->(%p) stub!\n", iface, pllTime);
|
||||||
return E_NOTIMPL;
|
return E_NOTIMPL;
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT WINAPI MediaPosition_put_PrerollTime(IMediaPosition * iface, REFTIME llTime){
|
static HRESULT WINAPI MediaPosition_put_PrerollTime(IMediaPosition * iface, REFTIME llTime)
|
||||||
|
{
|
||||||
FIXME("(%p)->(%f) stub!\n", iface, llTime);
|
FIXME("(%p)->(%f) stub!\n", iface, llTime);
|
||||||
return E_NOTIMPL;
|
return E_NOTIMPL;
|
||||||
}
|
}
|
||||||
@ -2775,12 +2781,14 @@ static HRESULT WINAPI MediaPosition_get_Rate(IMediaPosition * iface, double *pdR
|
|||||||
return IMediaSeeking_GetRate(&This->IMediaSeeking_iface, pdRate);
|
return IMediaSeeking_GetRate(&This->IMediaSeeking_iface, pdRate);
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT WINAPI MediaPosition_CanSeekForward(IMediaPosition * iface, LONG *pCanSeekForward){
|
static HRESULT WINAPI MediaPosition_CanSeekForward(IMediaPosition * iface, LONG *pCanSeekForward)
|
||||||
|
{
|
||||||
FIXME("(%p)->(%p) stub!\n", iface, pCanSeekForward);
|
FIXME("(%p)->(%p) stub!\n", iface, pCanSeekForward);
|
||||||
return E_NOTIMPL;
|
return E_NOTIMPL;
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT WINAPI MediaPosition_CanSeekBackward(IMediaPosition * iface, LONG *pCanSeekBackward){
|
static HRESULT WINAPI MediaPosition_CanSeekBackward(IMediaPosition * iface, LONG *pCanSeekBackward)
|
||||||
|
{
|
||||||
FIXME("(%p)->(%p) stub!\n", iface, pCanSeekBackward);
|
FIXME("(%p)->(%p) stub!\n", iface, pCanSeekBackward);
|
||||||
return E_NOTIMPL;
|
return E_NOTIMPL;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user