Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
b8d3c99d
Commit
b8d3c99d
authored
Sep 11, 2006
by
Stefan Leichter
Committed by
Alexandre Julliard
Sep 12, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmsynth: Print 64bit integers with wine_dbgstr_longlong.
parent
7e1f392a
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
6 deletions
+8
-6
synth.c
dlls/dmsynth/synth.c
+6
-4
synthsink.c
dlls/dmsynth/synthsink.c
+2
-2
No files found.
dlls/dmsynth/synth.c
View file @
b8d3c99d
...
...
@@ -96,7 +96,7 @@ static HRESULT WINAPI IDirectMusicSynth8Impl_Unload (LPDIRECTMUSICSYNTH8 iface,
static
HRESULT
WINAPI
IDirectMusicSynth8Impl_PlayBuffer
(
LPDIRECTMUSICSYNTH8
iface
,
REFERENCE_TIME
rt
,
LPBYTE
pbBuffer
,
DWORD
cbBuffer
)
{
IDirectMusicSynth8Impl
*
This
=
(
IDirectMusicSynth8Impl
*
)
iface
;
FIXME
(
"(%p,
%lli, %p, %ld): stub
\n
"
,
This
,
rt
,
pbBuffer
,
cbBuffer
);
FIXME
(
"(%p,
0x%s, %p, %ld): stub
\n
"
,
This
,
wine_dbgstr_longlong
(
rt
)
,
pbBuffer
,
cbBuffer
);
return
S_OK
;
}
...
...
@@ -142,7 +142,7 @@ static HRESULT WINAPI IDirectMusicSynth8Impl_SetSynthSink (LPDIRECTMUSICSYNTH8 i
static
HRESULT
WINAPI
IDirectMusicSynth8Impl_Render
(
LPDIRECTMUSICSYNTH8
iface
,
short
*
pBuffer
,
DWORD
dwLength
,
LONGLONG
llPosition
)
{
IDirectMusicSynth8Impl
*
This
=
(
IDirectMusicSynth8Impl
*
)
iface
;
FIXME
(
"(%p, %p, %ld,
%lli): stub
\n
"
,
This
,
pBuffer
,
dwLength
,
llPosition
);
FIXME
(
"(%p, %p, %ld,
0x%s): stub
\n
"
,
This
,
pBuffer
,
dwLength
,
wine_dbgstr_longlong
(
llPosition
)
);
return
S_OK
;
}
...
...
@@ -174,13 +174,15 @@ static HRESULT WINAPI IDirectMusicSynth8Impl_GetAppend (LPDIRECTMUSICSYNTH8 ifac
/* IDirectMusicSynth8Impl IDirectMusicSynth8 part: */
static
HRESULT
WINAPI
IDirectMusicSynth8Impl_PlayVoice
(
LPDIRECTMUSICSYNTH8
iface
,
REFERENCE_TIME
rt
,
DWORD
dwVoiceId
,
DWORD
dwChannelGroup
,
DWORD
dwChannel
,
DWORD
dwDLId
,
long
prPitch
,
long
vrVolume
,
SAMPLE_TIME
stVoiceStart
,
SAMPLE_TIME
stLoopStart
,
SAMPLE_TIME
stLoopEnd
)
{
IDirectMusicSynth8Impl
*
This
=
(
IDirectMusicSynth8Impl
*
)
iface
;
FIXME
(
"(%p, %lli, %ld, %ld, %ld, %ld, %li, %li,%lli, %lli, %lli): stub
\n
"
,
This
,
rt
,
dwVoiceId
,
dwChannelGroup
,
dwChannel
,
dwDLId
,
prPitch
,
vrVolume
,
stVoiceStart
,
stLoopStart
,
stLoopEnd
);
FIXME
(
"(%p, 0x%s, %ld, %ld, %ld, %ld, %li, %li,0x%s, 0x%s, 0x%s): stub
\n
"
,
This
,
wine_dbgstr_longlong
(
rt
),
dwVoiceId
,
dwChannelGroup
,
dwChannel
,
dwDLId
,
prPitch
,
vrVolume
,
wine_dbgstr_longlong
(
stVoiceStart
),
wine_dbgstr_longlong
(
stLoopStart
),
wine_dbgstr_longlong
(
stLoopEnd
));
return
S_OK
;
}
static
HRESULT
WINAPI
IDirectMusicSynth8Impl_StopVoice
(
LPDIRECTMUSICSYNTH8
iface
,
REFERENCE_TIME
rt
,
DWORD
dwVoiceId
)
{
IDirectMusicSynth8Impl
*
This
=
(
IDirectMusicSynth8Impl
*
)
iface
;
FIXME
(
"(%p,
%lli, %ld): stub
\n
"
,
This
,
rt
,
dwVoiceId
);
FIXME
(
"(%p,
0x%s, %ld): stub
\n
"
,
This
,
wine_dbgstr_longlong
(
rt
)
,
dwVoiceId
);
return
S_OK
;
}
...
...
dlls/dmsynth/synthsink.c
View file @
b8d3c99d
...
...
@@ -89,13 +89,13 @@ static HRESULT WINAPI IDirectMusicSynthSinkImpl_Activate (LPDIRECTMUSICSYNTHSINK
static
HRESULT
WINAPI
IDirectMusicSynthSinkImpl_SampleToRefTime
(
LPDIRECTMUSICSYNTHSINK
iface
,
LONGLONG
llSampleTime
,
REFERENCE_TIME
*
prfTime
)
{
IDirectMusicSynthSinkImpl
*
This
=
(
IDirectMusicSynthSinkImpl
*
)
iface
;
FIXME
(
"(%p,
%lli, %p): stub
\n
"
,
This
,
llSampleTime
,
prfTime
);
FIXME
(
"(%p,
0x%s, %p): stub
\n
"
,
This
,
wine_dbgstr_longlong
(
llSampleTime
)
,
prfTime
);
return
S_OK
;
}
static
HRESULT
WINAPI
IDirectMusicSynthSinkImpl_RefTimeToSample
(
LPDIRECTMUSICSYNTHSINK
iface
,
REFERENCE_TIME
rfTime
,
LONGLONG
*
pllSampleTime
)
{
IDirectMusicSynthSinkImpl
*
This
=
(
IDirectMusicSynthSinkImpl
*
)
iface
;
FIXME
(
"(%p,
%lli, %p): stub
\n
"
,
This
,
rfTime
,
pllSampleTime
);
FIXME
(
"(%p,
0x%s, %p): stub
\n
"
,
This
,
wine_dbgstr_longlong
(
rfTime
)
,
pllSampleTime
);
return
S_OK
;
}
...
...
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