Zhiyi Zhang : winedump: Dump more fields for EMR_EXTTEXTOUTW records.

Alexandre Julliard julliard at winehq.org
Wed Mar 24 16:20:40 CDT 2021


Module: wine
Branch: master
Commit: 603cb1c17348feba99c06f636517abddf0efa0eb
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=603cb1c17348feba99c06f636517abddf0efa0eb

Author: Zhiyi Zhang <zzhang at codeweavers.com>
Date:   Wed Mar 24 16:10:21 2021 +0800

winedump: Dump more fields for EMR_EXTTEXTOUTW records.

Signed-off-by: Zhiyi Zhang <zzhang at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 tools/winedump/emf.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/tools/winedump/emf.c b/tools/winedump/emf.c
index f3c92ac0539..d44f7a806a5 100644
--- a/tools/winedump/emf.c
+++ b/tools/winedump/emf.c
@@ -357,7 +357,9 @@ static int dump_emfrecord(void)
         const EMREXTTEXTOUTW *etoW = PRD(offset, sizeof(*etoW));
 
         printf("%-20s %08x\n", "EMR_EXTTEXTOUTW", length);
-        printf("pt (%d,%d) rect (%d,%d - %d,%d) flags %#x, %s\n",
+        printf("bounds (%d,%d - %d,%d) mode %#x x_scale %f y_scale %f pt (%d,%d) rect (%d,%d - %d,%d) flags %#x, %s\n",
+               etoW->rclBounds.left, etoW->rclBounds.top, etoW->rclBounds.right, etoW->rclBounds.bottom,
+               etoW->iGraphicsMode, etoW->exScale, etoW->eyScale,
                etoW->emrtext.ptlReference.x, etoW->emrtext.ptlReference.y,
                etoW->emrtext.rcl.left, etoW->emrtext.rcl.top,
                etoW->emrtext.rcl.right, etoW->emrtext.rcl.bottom,




More information about the wine-cvs mailing list