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
d22a32b5
Commit
d22a32b5
authored
Jan 25, 2014
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Jan 29, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mmdevapi/tests: Use common wine_dbgstr_guid implementation from test.h.
parent
21ff4134
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
12 deletions
+1
-12
dependency.c
dlls/mmdevapi/tests/dependency.c
+1
-12
No files found.
dlls/mmdevapi/tests/dependency.c
View file @
d22a32b5
...
...
@@ -30,17 +30,6 @@
#include "dshow.h"
#include "dsound.h"
static
inline
const
char
*
dump_guid
(
const
GUID
*
id
)
{
static
char
data
[
39
];
if
(
!
id
)
return
"(null)"
;
wsprintfA
(
data
,
"{%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x}"
,
id
->
Data1
,
id
->
Data2
,
id
->
Data3
,
id
->
Data4
[
0
],
id
->
Data4
[
1
],
id
->
Data4
[
2
],
id
->
Data4
[
3
],
id
->
Data4
[
4
],
id
->
Data4
[
5
],
id
->
Data4
[
6
],
id
->
Data4
[
7
]
);
return
data
;
}
START_TEST
(
dependency
)
{
HRESULT
hr
;
...
...
@@ -93,7 +82,7 @@ START_TEST(dependency)
hr
=
IBaseFilter_GetClassID
(
bf
,
&
clsid
);
ok
(
hr
==
S_OK
,
"GetClassId failed with 0x%08x
\n
"
,
hr
);
if
(
hr
==
S_OK
)
ok
(
IsEqualCLSID
(
&
clsid
,
&
CLSID_DSoundRender
),
"Wrong class id %s
\n
"
,
dump
_guid
(
&
clsid
));
ok
(
IsEqualCLSID
(
&
clsid
,
&
CLSID_DSoundRender
),
"Wrong class id %s
\n
"
,
wine_dbgstr
_guid
(
&
clsid
));
}
}
...
...
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