Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
19d275f7
Commit
19d275f7
authored
Aug 18, 2006
by
Stefan Leichter
Committed by
Alexandre Julliard
Aug 18, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz: Print 64bit integers with wine_dbgstr_longlong.
parent
cb4889d9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
4 deletions
+7
-4
filtergraph.c
dlls/quartz/filtergraph.c
+3
-2
systemclock.c
dlls/quartz/systemclock.c
+4
-2
No files found.
dlls/quartz/filtergraph.c
View file @
19d275f7
...
...
@@ -1646,7 +1646,8 @@ static HRESULT WINAPI MediaSeeking_ConvertTimeFormat(IMediaSeeking *iface,
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(IMediaFilter *iface)
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
;
}
...
...
dlls/quartz/systemclock.c
View file @
19d275f7
...
...
@@ -260,7 +260,8 @@ static HRESULT WINAPI SystemClockImpl_AdviseTime(IReferenceClock* iface, REFEREN
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_AdvisePeriodic(IReferenceClock* iface, REF
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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment