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
eb7ef833
Commit
eb7ef833
authored
Mar 31, 2006
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi: In metafile test only print debug output if enabled.
parent
c20d6c40
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
metafile.c
dlls/gdi/tests/metafile.c
+6
-0
No files found.
dlls/gdi/tests/metafile.c
View file @
eb7ef833
...
...
@@ -612,6 +612,8 @@ static void dump_mf_bits (const HMETAFILE mf, const char *desc)
BYTE
buf
[
MF_BUFSIZE
];
UINT
mfsize
,
i
;
if
(
!
winetest_debug
)
return
;
mfsize
=
GetMetaFileBitsEx
(
mf
,
MF_BUFSIZE
,
buf
);
ok
(
mfsize
>
0
,
"%s: GetMetaFileBitsEx failed.
\n
"
,
desc
);
...
...
@@ -710,6 +712,8 @@ static void dump_emf_bits(const HENHMETAFILE mf, const char *desc)
BYTE
buf
[
MF_BUFSIZE
];
UINT
mfsize
,
i
;
if
(
!
winetest_debug
)
return
;
mfsize
=
GetEnhMetaFileBits
(
mf
,
MF_BUFSIZE
,
buf
);
ok
(
mfsize
>
0
,
"%s: GetEnhMetaFileBits failed
\n
"
,
desc
);
...
...
@@ -733,6 +737,8 @@ static void dump_emf_records(const HENHMETAFILE mf, const char *desc)
BYTE
buf
[
MF_BUFSIZE
];
UINT
mfsize
,
offset
;
if
(
!
winetest_debug
)
return
;
mfsize
=
GetEnhMetaFileBits
(
mf
,
MF_BUFSIZE
,
buf
);
ok
(
mfsize
>
0
,
"%s: GetEnhMetaFileBits error %ld
\n
"
,
desc
,
GetLastError
());
...
...
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