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
5e507b3e
Commit
5e507b3e
authored
Oct 11, 2023
by
Piotr Caban
Committed by
Alexandre Julliard
Oct 11, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32: Fix METADC handling in PlayMetaFile.
parent
043cc241
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
metafile.c
dlls/gdi32/metafile.c
+7
-0
No files found.
dlls/gdi32/metafile.c
View file @
5e507b3e
...
...
@@ -360,6 +360,7 @@ HMETAFILE WINAPI CopyMetaFileA( HMETAFILE hSrcMetaFile, LPCSTR lpFilename )
*/
BOOL
WINAPI
PlayMetaFile
(
HDC
hdc
,
HMETAFILE
hmf
)
{
BOOL
metadc
=
GetObjectType
(
hdc
)
==
OBJ_METADC
;
METAHEADER
*
mh
=
get_metafile_bits
(
hmf
);
METARECORD
*
mr
;
HANDLETABLE
*
ht
;
...
...
@@ -372,6 +373,8 @@ BOOL WINAPI PlayMetaFile( HDC hdc, HMETAFILE hmf )
if
(
!
mh
)
return
FALSE
;
if
(
!
metadc
)
{
/* save DC */
hPen
=
GetCurrentObject
(
hdc
,
OBJ_PEN
);
hBrush
=
GetCurrentObject
(
hdc
,
OBJ_BRUSH
);
...
...
@@ -383,6 +386,7 @@ BOOL WINAPI PlayMetaFile( HDC hdc, HMETAFILE hmf )
DeleteObject
(
hRgn
);
hRgn
=
0
;
}
}
/* create the handle table */
ht
=
HeapAlloc
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
...
...
@@ -414,12 +418,15 @@ BOOL WINAPI PlayMetaFile( HDC hdc, HMETAFILE hmf )
PlayMetaFileRecord
(
hdc
,
ht
,
mr
,
mh
->
mtNoObjects
);
}
if
(
!
metadc
)
{
/* restore DC */
SelectObject
(
hdc
,
hPen
);
SelectObject
(
hdc
,
hBrush
);
SelectPalette
(
hdc
,
hPal
,
FALSE
);
ExtSelectClipRgn
(
hdc
,
hRgn
,
RGN_COPY
);
DeleteObject
(
hRgn
);
}
/* free objects in handle table */
for
(
i
=
0
;
i
<
mh
->
mtNoObjects
;
i
++
)
...
...
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