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
169615e7
Commit
169615e7
authored
Sep 27, 2016
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Sep 27, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dpvoice: Use debugstr_guid() to trace GUIDs.
Signed-off-by:
Michael Stefaniuc
<
mstefani@redhat.de
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
3589cd92
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
client.c
dlls/dpvoice/client.c
+2
-1
main.c
dlls/dpvoice/main.c
+1
-1
No files found.
dlls/dpvoice/client.c
View file @
169615e7
...
@@ -286,7 +286,8 @@ static HRESULT WINAPI dpvtest_CheckAudioSetup(IDirectPlayVoiceTest *iface, const
...
@@ -286,7 +286,8 @@ static HRESULT WINAPI dpvtest_CheckAudioSetup(IDirectPlayVoiceTest *iface, const
HWND
hwndParent
,
DWORD
dwFlags
)
HWND
hwndParent
,
DWORD
dwFlags
)
{
{
IDirectPlayVoiceTestImpl
*
This
=
impl_from_IDirectPlayVoiceTest
(
iface
);
IDirectPlayVoiceTestImpl
*
This
=
impl_from_IDirectPlayVoiceTest
(
iface
);
FIXME
(
"%p %p %p %p %d
\n
"
,
This
,
pguidPlaybackDevice
,
pguidCaptureDevice
,
hwndParent
,
dwFlags
);
FIXME
(
"%p %s %s %p %d
\n
"
,
This
,
debugstr_guid
(
pguidPlaybackDevice
),
debugstr_guid
(
pguidCaptureDevice
),
hwndParent
,
dwFlags
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
...
...
dlls/dpvoice/main.c
View file @
169615e7
...
@@ -102,7 +102,7 @@ static IClassFactoryImpl DPVOICE_CFS[] =
...
@@ -102,7 +102,7 @@ static IClassFactoryImpl DPVOICE_CFS[] =
HRESULT
WINAPI
DirectPlayVoiceCreate
(
LPCGUID
pIID
,
void
**
ppvInterface
)
HRESULT
WINAPI
DirectPlayVoiceCreate
(
LPCGUID
pIID
,
void
**
ppvInterface
)
{
{
FIXME
(
"(%
p, %p) stub
\n
"
,
pIID
,
ppvInterface
);
FIXME
(
"(%
s, %p) stub
\n
"
,
debugstr_guid
(
pIID
)
,
ppvInterface
);
return
E_NOTIMPL
;
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