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
82889a69
Commit
82889a69
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
d3dxof/tests: Use common wine_dbgstr_guid implementation from test.h.
parent
e4a0da37
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
13 deletions
+2
-13
d3dxof.c
dlls/d3dxof/tests/d3dxof.c
+2
-13
No files found.
dlls/d3dxof/tests/d3dxof.c
View file @
82889a69
...
...
@@ -40,14 +40,6 @@
#define SEMICOLON_5X TOKEN_SEMICOLON, TOKEN_SEMICOLON, TOKEN_SEMICOLON, TOKEN_SEMICOLON, TOKEN_SEMICOLON
static
inline
void
debugstr_guid
(
char
*
buf
,
const
GUID
*
id
)
{
sprintf
(
buf
,
"{%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
]
);
}
static
HMODULE
hd3dxof
;
static
HRESULT
(
WINAPI
*
pDirectXFileCreate
)(
LPDIRECTXFILE
*
);
...
...
@@ -1120,8 +1112,6 @@ static void process_data(LPDIRECTXFILEDATA lpDirectXFileData, int level)
char
name
[
100
];
GUID
clsid
;
const
GUID
*
clsid_type
=
NULL
;
char
str_clsid
[
40
];
char
str_clsid_type
[
40
];
DWORD
len
=
100
;
LPDIRECTXFILEOBJECT
pChildObj
;
int
i
;
...
...
@@ -1139,9 +1129,8 @@ static void process_data(LPDIRECTXFILEDATA lpDirectXFileData, int level)
ok
(
hr
==
DXFILE_OK
,
"IDirectXFileData_GetData: %x
\n
"
,
hr
);
for
(
i
=
0
;
i
<
level
;
i
++
)
printf
(
" "
);
debugstr_guid
(
str_clsid
,
&
clsid
);
debugstr_guid
(
str_clsid_type
,
clsid_type
);
printf
(
"Found object '%s' - %s - %s - %d
\n
"
,
len
?
name
:
""
,
str_clsid
,
str_clsid_type
,
size
);
printf
(
"Found object '%s' - %s - %s - %d
\n
"
,
len
?
name
:
""
,
wine_dbgstr_guid
(
&
clsid
),
wine_dbgstr_guid
(
clsid_type
),
size
);
if
(
EXPAND_STRING
&&
size
==
4
)
{
...
...
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