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
253bffaf
Commit
253bffaf
authored
Jul 26, 2016
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jul 26, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmusic: Use debugstr_guid to trace some GUIDs.
Signed-off-by:
Michael Stefaniuc
<
mstefani@redhat.de
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
6f0979b9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
5 deletions
+8
-5
clock.c
dlls/dmusic/clock.c
+1
-1
dmusic.c
dlls/dmusic/dmusic.c
+1
-1
port.c
dlls/dmusic/port.c
+6
-3
No files found.
dlls/dmusic/clock.c
View file @
253bffaf
...
...
@@ -123,7 +123,7 @@ HRESULT DMUSIC_CreateReferenceClockImpl(LPCGUID riid, LPVOID* ret_iface, LPUNKNO
IReferenceClockImpl
*
clock
;
HRESULT
hr
;
TRACE
(
"(%
p,%p,%p)
\n
"
,
riid
,
ret_iface
,
unkouter
);
TRACE
(
"(%
s, %p, %p)
\n
"
,
debugstr_guid
(
riid
)
,
ret_iface
,
unkouter
);
clock
=
HeapAlloc
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
sizeof
(
IReferenceClockImpl
));
if
(
!
clock
)
{
...
...
dlls/dmusic/dmusic.c
View file @
253bffaf
...
...
@@ -405,7 +405,7 @@ HRESULT WINAPI DMUSIC_CreateDirectMusicImpl(LPCGUID riid, LPVOID* ret_iface, LPU
IDirectMusic8Impl
*
dmusic
;
HRESULT
ret
;
TRACE
(
"(%
p,%p,%p)
\n
"
,
riid
,
ret_iface
,
unkouter
);
TRACE
(
"(%
s, %p, %p)
\n
"
,
debugstr_guid
(
riid
)
,
ret_iface
,
unkouter
);
*
ret_iface
=
NULL
;
if
(
unkouter
)
...
...
dlls/dmusic/port.c
View file @
253bffaf
...
...
@@ -678,7 +678,8 @@ HRESULT DMUSIC_CreateSynthPortImpl(LPCGUID guid, LPVOID *object, LPUNKNOWN unkou
HRESULT
hr
=
E_FAIL
;
int
i
;
TRACE
(
"(%p,%p,%p,%p,%p,%d)
\n
"
,
guid
,
object
,
unkouter
,
port_params
,
port_caps
,
device
);
TRACE
(
"(%s, %p, %p, %p, %p, %d)
\n
"
,
debugstr_guid
(
guid
),
object
,
unkouter
,
port_params
,
port_caps
,
device
);
*
object
=
NULL
;
...
...
@@ -762,14 +763,16 @@ HRESULT DMUSIC_CreateSynthPortImpl(LPCGUID guid, LPVOID *object, LPUNKNOWN unkou
HRESULT
DMUSIC_CreateMidiOutPortImpl
(
LPCGUID
guid
,
LPVOID
*
object
,
LPUNKNOWN
unkouter
,
LPDMUS_PORTPARAMS
port_params
,
LPDMUS_PORTCAPS
port_caps
,
DWORD
device
)
{
TRACE
(
"(%p,%p,%p,%p,%p,%d): stub
\n
"
,
guid
,
object
,
unkouter
,
port_params
,
port_caps
,
device
);
TRACE
(
"(%s, %p, %p, %p, %p, %d): stub
\n
"
,
debugstr_guid
(
guid
),
object
,
unkouter
,
port_params
,
port_caps
,
device
);
return
E_NOTIMPL
;
}
HRESULT
DMUSIC_CreateMidiInPortImpl
(
LPCGUID
guid
,
LPVOID
*
object
,
LPUNKNOWN
unkouter
,
LPDMUS_PORTPARAMS
port_params
,
LPDMUS_PORTCAPS
port_caps
,
DWORD
device
)
{
TRACE
(
"(%p,%p,%p,%p,%p,%d): stub
\n
"
,
guid
,
object
,
unkouter
,
port_params
,
port_caps
,
device
);
TRACE
(
"(%s, %p, %p, %p, %p, %d): stub
\n
"
,
debugstr_guid
(
guid
),
object
,
unkouter
,
port_params
,
port_caps
,
device
);
return
E_NOTIMPL
;
}
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