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
cd4cd766
Commit
cd4cd766
authored
Jan 25, 2014
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Jan 28, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmime/tests: Use common wine_dbgstr_guid implementation from test.h.
parent
82889a69
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
13 deletions
+1
-13
performance.c
dlls/dmime/tests/performance.c
+1
-13
No files found.
dlls/dmime/tests/performance.c
View file @
cd4cd766
...
...
@@ -31,18 +31,6 @@
DEFINE_GUID
(
GUID_NULL
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
);
DEFINE_GUID
(
GUID_Bunk
,
0xFFFFFFFF
,
0xFFFF
,
0xFFFF
,
0xFF
,
0xFF
,
0xFF
,
0xFF
,
0xFF
,
0xFF
,
0xFF
,
0xFF
);
static
const
char
*
debugstr_guid
(
REFIID
riid
)
{
static
char
buf
[
50
];
sprintf
(
buf
,
"{%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X}"
,
riid
->
Data1
,
riid
->
Data2
,
riid
->
Data3
,
riid
->
Data4
[
0
],
riid
->
Data4
[
1
],
riid
->
Data4
[
2
],
riid
->
Data4
[
3
],
riid
->
Data4
[
4
],
riid
->
Data4
[
5
],
riid
->
Data4
[
6
],
riid
->
Data4
[
7
]);
return
buf
;
}
static
HRESULT
test_InitAudio
(
void
)
{
IDirectMusicPerformance8
*
idmusicperformance
;
...
...
@@ -128,7 +116,7 @@ static void test_createport(void)
ok
(
portcaps
.
dwSize
==
sizeof
(
portcaps
),
"Got unexpected portcaps struct size: %08x
\n
"
,
portcaps
.
dwSize
);
trace
(
"portcaps(%u).dwFlags: %08x
\n
"
,
i
,
portcaps
.
dwFlags
);
trace
(
"portcaps(%u).guidPort: %s
\n
"
,
i
,
debu
gstr_guid
(
&
portcaps
.
guidPort
));
trace
(
"portcaps(%u).guidPort: %s
\n
"
,
i
,
wine_db
gstr_guid
(
&
portcaps
.
guidPort
));
trace
(
"portcaps(%u).dwClass: %08x
\n
"
,
i
,
portcaps
.
dwClass
);
trace
(
"portcaps(%u).dwType: %08x
\n
"
,
i
,
portcaps
.
dwType
);
trace
(
"portcaps(%u).dwMemorySize: %08x
\n
"
,
i
,
portcaps
.
dwMemorySize
);
...
...
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