Commit a79c2fd3 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

gdi32: Ignore in_count parameter in Escape() on PASSTHROUGH escape.

parent 77428d02
......@@ -637,6 +637,12 @@ INT WINAPI Escape( HDC hdc, INT escape, INT in_count, const char *in_data, void
}
break;
}
case PASSTHROUGH:
case POSTSCRIPT_PASSTHROUGH:
in_count = *(const WORD *)in_data + sizeof(WORD);
out_data = NULL;
break;
}
/* if not handled internally, pass it to the driver */
......
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