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
893ac008
Commit
893ac008
authored
Oct 15, 2022
by
Piotr Caban
Committed by
Alexandre Julliard
Oct 17, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedump: Add prefix when dumping EMF files.
parent
4d649c62
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
2 deletions
+2
-2
emf.c
tools/winedump/emf.c
+0
-0
emfspool.c
tools/winedump/emfspool.c
+1
-1
winedump.h
tools/winedump/winedump.h
+1
-1
No files found.
tools/winedump/emf.c
View file @
893ac008
This diff is collapsed.
Click to expand it.
tools/winedump/emfspool.c
View file @
893ac008
...
...
@@ -129,7 +129,7 @@ static unsigned long dump_emfspool_record(unsigned long off)
case
EMRI_METAFILE_DATA
:
{
unsigned
long
emf_off
=
off
+
sizeof
(
*
hdr
);
while
((
emf_off
=
dump_emfrecord
(
emf_off
))
&&
emf_off
<
off
+
sizeof
(
*
hdr
)
+
hdr
->
cjSize
);
while
((
emf_off
=
dump_emfrecord
(
" "
,
emf_off
))
&&
emf_off
<
off
+
sizeof
(
*
hdr
)
+
hdr
->
cjSize
);
break
;
}
...
...
tools/winedump/winedump.h
View file @
893ac008
...
...
@@ -248,7 +248,7 @@ void dbg_dump( void );
enum
FileSig
get_kind_lnk
(
void
);
void
lnk_dump
(
void
);
enum
FileSig
get_kind_emf
(
void
);
unsigned
long
dump_emfrecord
(
unsigned
long
offset
);
unsigned
long
dump_emfrecord
(
const
char
*
pfx
,
unsigned
long
offset
);
void
emf_dump
(
void
);
enum
FileSig
get_kind_emfspool
(
void
);
void
emfspool_dump
(
void
);
...
...
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