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
372c4386
Commit
372c4386
authored
Oct 07, 2023
by
Nikolay Sivov
Committed by
Alexandre Julliard
Oct 09, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedump/emf: Add EMR_SETMITERLIMIT record dumping.
parent
fea9bb75
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
emf.c
tools/winedump/emf.c
+9
-1
No files found.
tools/winedump/emf.c
View file @
372c4386
...
...
@@ -174,7 +174,6 @@ unsigned long dump_emfrecord(const char *pfx, unsigned long offset)
EMRCASE
(
EMR_ARCTO
);
EMRCASE
(
EMR_POLYDRAW
);
EMRCASE
(
EMR_SETARCDIRECTION
);
EMRCASE
(
EMR_SETMITERLIMIT
);
EMRCASE
(
EMR_BEGINPATH
);
EMRCASE
(
EMR_ENDPATH
);
EMRCASE
(
EMR_CLOSEFIGURE
);
...
...
@@ -186,6 +185,15 @@ unsigned long dump_emfrecord(const char *pfx, unsigned long offset)
EMRCASE
(
EMR_SELECTCLIPPATH
);
EMRCASE
(
EMR_ABORTPATH
);
case
EMR_SETMITERLIMIT
:
{
const
EMRSETMITERLIMIT
*
record
=
PRD
(
offset
,
sizeof
(
*
record
));
printf
(
"%s%-20s %08x
\n
"
,
pfx
,
"EMR_SETMITERLIMIT"
,
length
);
printf
(
"%s miter limit %u
\n
"
,
pfx
,
*
(
unsigned
int
*
)
&
record
->
eMiterLimit
);
break
;
}
case
EMR_GDICOMMENT
:
{
printf
(
"%s%-20s %08x
\n
"
,
pfx
,
"EMR_GDICOMMENT"
,
length
);
...
...
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