mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 14:45:53 +00:00
[Win32SS] Support Clipboard Metafile
Major fix ups and plugging in missing code changes. Handle code is from another project currently being developed for ReactOS. See CORE-12143
This commit is contained in:
parent
07fa6fc38c
commit
da264743e1
7 changed files with 173 additions and 77 deletions
|
@ -115,7 +115,9 @@ ASSERT_LOCK_ORDER(
|
|||
(objt) == GDIObjType_BRUSH_TYPE)
|
||||
#define ASSERT_EXCLUSIVE_OBJECT_TYPE(objt) \
|
||||
ASSERT((objt) == GDIObjType_DC_TYPE || \
|
||||
(objt) == GDIObjType_RGN_TYPE)
|
||||
(objt) == GDIObjType_RGN_TYPE || \
|
||||
(objt) == GDIObjType_UMPD_TYPE || \
|
||||
(objt) == GDIObjType_META_TYPE)
|
||||
#define ASSERT_TRYLOCK_OBJECT_TYPE(objt) \
|
||||
ASSERT((objt) == GDIObjType_DRVOBJ_TYPE)
|
||||
#else
|
||||
|
@ -177,7 +179,7 @@ apfnCleanup[] =
|
|||
NULL, /* 12 GDIObjType_UNUSED4_TYPE */
|
||||
NULL, /* 13 GDIObjType_SPACE_TYPE, unused */
|
||||
NULL, /* 14 GDIObjType_UNUSED5_TYPE */
|
||||
NULL, /* 15 GDIObjType_META_TYPE, unused */
|
||||
GDIOBJ_vCleanup, /* 15 GDIObjType_META_TYPE */
|
||||
NULL, /* 16 GDIObjType_EFSTATE_TYPE, unused */
|
||||
NULL, /* 17 GDIObjType_BMFD_TYPE, unused */
|
||||
NULL, /* 18 GDIObjType_VTFD_TYPE, unused */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue