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
08e12600
Commit
08e12600
authored
Sep 10, 2006
by
Stefan Leichter
Committed by
Alexandre Julliard
Sep 11, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmusic: Print 64bit integers with wine_dbgstr_longlong.
parent
ed8ce298
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
6 deletions
+7
-6
buffer.c
dlls/dmusic/buffer.c
+3
-3
clock.c
dlls/dmusic/clock.c
+2
-2
dmusic_main.c
dlls/dmusic/dmusic_main.c
+2
-1
No files found.
dlls/dmusic/buffer.c
View file @
08e12600
...
...
@@ -76,13 +76,13 @@ static HRESULT WINAPI IDirectMusicBufferImpl_TotalTime (LPDIRECTMUSICBUFFER ifac
static
HRESULT
WINAPI
IDirectMusicBufferImpl_PackStructured
(
LPDIRECTMUSICBUFFER
iface
,
REFERENCE_TIME
rt
,
DWORD
dwChannelGroup
,
DWORD
dwChannelMessage
)
{
IDirectMusicBufferImpl
*
This
=
(
IDirectMusicBufferImpl
*
)
iface
;
FIXME
(
"(%p,
%lli, %ld, %ld): stub
\n
"
,
This
,
rt
,
dwChannelGroup
,
dwChannelMessage
);
FIXME
(
"(%p,
0x%s, %ld, %ld): stub
\n
"
,
This
,
wine_dbgstr_longlong
(
rt
)
,
dwChannelGroup
,
dwChannelMessage
);
return
S_OK
;
}
static
HRESULT
WINAPI
IDirectMusicBufferImpl_PackUnstructured
(
LPDIRECTMUSICBUFFER
iface
,
REFERENCE_TIME
rt
,
DWORD
dwChannelGroup
,
DWORD
cb
,
LPBYTE
lpb
)
{
IDirectMusicBufferImpl
*
This
=
(
IDirectMusicBufferImpl
*
)
iface
;
FIXME
(
"(%p,
%lli, %ld, %ld, %p): stub
\n
"
,
This
,
rt
,
dwChannelGroup
,
cb
,
lpb
);
FIXME
(
"(%p,
0x%s, %ld, %ld, %p): stub
\n
"
,
This
,
wine_dbgstr_longlong
(
rt
)
,
dwChannelGroup
,
cb
,
lpb
);
return
S_OK
;
}
...
...
@@ -130,7 +130,7 @@ static HRESULT WINAPI IDirectMusicBufferImpl_GetBufferFormat (LPDIRECTMUSICBUFFE
static
HRESULT
WINAPI
IDirectMusicBufferImpl_SetStartTime
(
LPDIRECTMUSICBUFFER
iface
,
REFERENCE_TIME
rt
)
{
IDirectMusicBufferImpl
*
This
=
(
IDirectMusicBufferImpl
*
)
iface
;
FIXME
(
"(%p,
%lli): stub
\n
"
,
This
,
rt
);
FIXME
(
"(%p,
0x%s): stub
\n
"
,
This
,
wine_dbgstr_longlong
(
rt
)
);
return
S_OK
;
}
...
...
dlls/dmusic/clock.c
View file @
08e12600
...
...
@@ -72,13 +72,13 @@ static HRESULT WINAPI IReferenceClockImpl_GetTime (IReferenceClock *iface, REFER
static
HRESULT
WINAPI
IReferenceClockImpl_AdviseTime
(
IReferenceClock
*
iface
,
REFERENCE_TIME
baseTime
,
REFERENCE_TIME
streamTime
,
HANDLE
hEvent
,
DWORD
*
pdwAdviseCookie
)
{
IReferenceClockImpl
*
This
=
(
IReferenceClockImpl
*
)
iface
;
FIXME
(
"(%p,
%lli, %lli, %p, %p): stub
\n
"
,
This
,
baseTime
,
streamTime
,
hEvent
,
pdwAdviseCookie
);
FIXME
(
"(%p,
0x%s, 0x%s, %p, %p): stub
\n
"
,
This
,
wine_dbgstr_longlong
(
baseTime
),
wine_dbgstr_longlong
(
streamTime
)
,
hEvent
,
pdwAdviseCookie
);
return
S_OK
;
}
static
HRESULT
WINAPI
IReferenceClockImpl_AdvisePeriodic
(
IReferenceClock
*
iface
,
REFERENCE_TIME
startTime
,
REFERENCE_TIME
periodTime
,
HANDLE
hSemaphore
,
DWORD
*
pdwAdviseCookie
)
{
IReferenceClockImpl
*
This
=
(
IReferenceClockImpl
*
)
iface
;
FIXME
(
"(%p,
%lli, %lli, %p, %p): stub
\n
"
,
This
,
startTime
,
periodTime
,
hSemaphore
,
pdwAdviseCookie
);
FIXME
(
"(%p,
0x%s, 0x%s, %p, %p): stub
\n
"
,
This
,
wine_dbgstr_longlong
(
startTime
),
wine_dbgstr_longlong
(
periodTime
)
,
hSemaphore
,
pdwAdviseCookie
);
return
S_OK
;
}
...
...
dlls/dmusic/dmusic_main.c
View file @
08e12600
...
...
@@ -596,7 +596,8 @@ const char *debugstr_DMUS_OBJECTDESC (LPDMUS_OBJECTDESC pDesc) {
if
(
pDesc
->
dwValidData
&
DMUS_OBJ_NAME
)
ptr
+=
sprintf
(
ptr
,
" - wszName = %s
\n
"
,
debugstr_w
(
pDesc
->
wszName
));
if
(
pDesc
->
dwValidData
&
DMUS_OBJ_CATEGORY
)
ptr
+=
sprintf
(
ptr
,
" - wszCategory = %s
\n
"
,
debugstr_w
(
pDesc
->
wszCategory
));
if
(
pDesc
->
dwValidData
&
DMUS_OBJ_FILENAME
)
ptr
+=
sprintf
(
ptr
,
" - wszFileName = %s
\n
"
,
debugstr_w
(
pDesc
->
wszFileName
));
if
(
pDesc
->
dwValidData
&
DMUS_OBJ_MEMORY
)
ptr
+=
sprintf
(
ptr
,
" - llMemLength = %lli
\n
- pbMemData = %p
\n
"
,
pDesc
->
llMemLength
,
pDesc
->
pbMemData
);
if
(
pDesc
->
dwValidData
&
DMUS_OBJ_MEMORY
)
ptr
+=
sprintf
(
ptr
,
" - llMemLength = 0x%s
\n
- pbMemData = %p
\n
"
,
wine_dbgstr_longlong
(
pDesc
->
llMemLength
),
pDesc
->
pbMemData
);
if
(
pDesc
->
dwValidData
&
DMUS_OBJ_STREAM
)
ptr
+=
sprintf
(
ptr
,
" - pStream = %p"
,
pDesc
->
pStream
);
return
wine_dbg_sprintf
(
"%s"
,
buffer
);
...
...
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