Module: wine Branch: master Commit: 19d275f775e591b17fc530ba052298490eb0c862 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=19d275f775e591b17fc530ba...
Author: Stefan Leichter Stefan.Leichter@camline.com Date: Fri Aug 18 18:52:37 2006 +0200
quartz: Print 64bit integers with wine_dbgstr_longlong.
---
dlls/quartz/filtergraph.c | 5 +++-- dlls/quartz/systemclock.c | 6 ++++-- 2 files changed, 7 insertions(+), 4 deletions(-)
diff --git a/dlls/quartz/filtergraph.c b/dlls/quartz/filtergraph.c index bbf22e6..1dcff3e 100644 --- a/dlls/quartz/filtergraph.c +++ b/dlls/quartz/filtergraph.c @@ -1646,7 +1646,8 @@ static HRESULT WINAPI MediaSeeking_Conve const GUID *pSourceFormat) { ICOM_THIS_MULTI(IFilterGraphImpl, IMediaSeeking_vtbl, iface);
- TRACE("(%p/%p)->(%p, %p, %lld, %p): stub !!!\n", This, iface, pTarget, pTargetFormat, Source, pSourceFormat); + TRACE("(%p/%p)->(%p, %p, 0x%s, %p): stub !!!\n", This, iface, pTarget, + pTargetFormat, wine_dbgstr_longlong(Source), pSourceFormat);
return S_OK; } @@ -4067,7 +4068,7 @@ static HRESULT WINAPI MediaFilter_Pause(
static HRESULT WINAPI MediaFilter_Run(IMediaFilter *iface, REFERENCE_TIME tStart) { - FIXME("(%lld): stub\n", tStart); + FIXME("(0x%s): stub\n", wine_dbgstr_longlong(tStart));
return E_NOTIMPL; } diff --git a/dlls/quartz/systemclock.c b/dlls/quartz/systemclock.c index f4391a4..6e2502e 100644 --- a/dlls/quartz/systemclock.c +++ b/dlls/quartz/systemclock.c @@ -260,7 +260,8 @@ static HRESULT WINAPI SystemClockImpl_Ad SystemClockImpl *This = (SystemClockImpl *)iface; SystemClockAdviseEntry* pEntry = NULL;
- TRACE("(%p, %lld, %lld, %ld, %p)\n", This, rtBaseTime, rtStreamTime, hEvent, pdwAdviseCookie); + TRACE("(%p, 0x%s, 0x%s, %ld, %p)\n", This, wine_dbgstr_longlong(rtBaseTime), + wine_dbgstr_longlong(rtStreamTime), hEvent, pdwAdviseCookie);
if ((HEVENT) 0 == hEvent) { return E_INVALIDARG; @@ -294,7 +295,8 @@ static HRESULT WINAPI SystemClockImpl_Ad SystemClockImpl *This = (SystemClockImpl *)iface; SystemClockAdviseEntry* pEntry = NULL;
- TRACE("(%p, %lld, %lld, %ld, %p)\n", This, rtStartTime, rtPeriodTime, hSemaphore, pdwAdviseCookie); + TRACE("(%p, 0x%s, 0x%s, %ld, %p)\n", This, wine_dbgstr_longlong(rtStartTime), + wine_dbgstr_longlong(rtPeriodTime), hSemaphore, pdwAdviseCookie);
if ((HSEMAPHORE) 0 == hSemaphore) { return E_INVALIDARG;