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
5332d0e5
Commit
5332d0e5
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
dplayx/tests: Use common wine_dbgstr_guid implementation from test.h.
parent
5e6f0e93
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
8 deletions
+1
-8
dplayx.c
dlls/dplayx/tests/dplayx.c
+1
-8
No files found.
dlls/dplayx/tests/dplayx.c
View file @
5332d0e5
...
...
@@ -87,8 +87,6 @@ static LPSTR get_temp_buffer(void)
static
LPCSTR
Guid2str
(
const
GUID
*
guid
)
{
LPSTR
buffer
=
get_temp_buffer
();
if
(
!
guid
)
return
"(null)"
;
/* Service providers */
...
...
@@ -124,12 +122,7 @@ static LPCSTR Guid2str(const GUID *guid)
if
(
IsEqualGUID
(
guid
,
&
DPAID_ComPort
))
return
"DPAID_ComPort"
;
sprintf
(
buffer
,
"{%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x}"
,
guid
->
Data1
,
guid
->
Data2
,
guid
->
Data3
,
guid
->
Data4
[
0
],
guid
->
Data4
[
1
],
guid
->
Data4
[
2
],
guid
->
Data4
[
3
],
guid
->
Data4
[
4
],
guid
->
Data4
[
5
],
guid
->
Data4
[
6
],
guid
->
Data4
[
7
]
);
return
buffer
;
return
wine_dbgstr_guid
(
guid
);
}
...
...
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