Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
078f192c
Commit
078f192c
authored
Jun 08, 2016
by
Huw Davies
Committed by
Alexandre Julliard
Jun 08, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32: Rename the struct representing an embedded WMF in an EMF.
Signed-off-by:
Huw Davies
<
huw@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
19d1416c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
enhmetafile.c
dlls/gdi32/enhmetafile.c
+4
-4
No files found.
dlls/gdi32/enhmetafile.c
View file @
078f192c
...
...
@@ -2739,7 +2739,7 @@ done:
return
emf
;
}
typedef
struct
gdi_
mf_comment
typedef
struct
wmf_in_e
mf_comment
{
DWORD
ident
;
DWORD
iComment
;
...
...
@@ -2747,7 +2747,7 @@ typedef struct gdi_mf_comment
DWORD
nChecksum
;
DWORD
fFlags
;
DWORD
cbWinMetaFile
;
}
gdi_
mf_comment
;
}
wmf_in_e
mf_comment
;
/******************************************************************
* SetWinMetaFileBits (GDI32.@)
...
...
@@ -2830,10 +2830,10 @@ HENHMETAFILE WINAPI SetWinMetaFileBits(UINT cbBuffer, const BYTE *lpbBuffer, HDC
*/
if
(
mm
!=
MM_TEXT
)
{
gdi_
mf_comment
*
mfcomment
;
wmf_in_e
mf_comment
*
mfcomment
;
UINT
mfcomment_size
;
mfcomment_size
=
sizeof
(
gdi_mf_
comment
)
+
cbBuffer
;
mfcomment_size
=
sizeof
(
*
mf
comment
)
+
cbBuffer
;
mfcomment
=
HeapAlloc
(
GetProcessHeap
(),
0
,
mfcomment_size
);
if
(
mfcomment
)
{
...
...
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