Commit 372c4386 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

winedump/emf: Add EMR_SETMITERLIMIT record dumping.

parent fea9bb75
......@@ -174,7 +174,6 @@ unsigned long dump_emfrecord(const char *pfx, unsigned long offset)
EMRCASE(EMR_ARCTO);
EMRCASE(EMR_POLYDRAW);
EMRCASE(EMR_SETARCDIRECTION);
EMRCASE(EMR_SETMITERLIMIT);
EMRCASE(EMR_BEGINPATH);
EMRCASE(EMR_ENDPATH);
EMRCASE(EMR_CLOSEFIGURE);
......@@ -186,6 +185,15 @@ unsigned long dump_emfrecord(const char *pfx, unsigned long offset)
EMRCASE(EMR_SELECTCLIPPATH);
EMRCASE(EMR_ABORTPATH);
case EMR_SETMITERLIMIT:
{
const EMRSETMITERLIMIT *record = PRD(offset, sizeof(*record));
printf("%s%-20s %08x\n", pfx, "EMR_SETMITERLIMIT", length);
printf("%s miter limit %u\n", pfx, *(unsigned int *)&record->eMiterLimit);
break;
}
case EMR_GDICOMMENT:
{
printf("%s%-20s %08x\n", pfx, "EMR_GDICOMMENT", length);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment