Commit 2f06af6a authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

wineps: Handle EMR_PIE record in spool files.

parent e4ecc89b
......@@ -241,6 +241,14 @@ static int WINAPI hmf_proc(HDC hdc, HANDLETABLE *htable,
p->rclBox.right, p->rclBox.bottom, p->ptlStart.x,
p->ptlStart.y, p->ptlEnd.x, p->ptlEnd.y);
}
case EMR_PIE:
{
const EMRPIE *p = (const EMRPIE *)rec;
return PSDRV_Pie(&data->pdev->dev, p->rclBox.left, p->rclBox.top,
p->rclBox.right, p->rclBox.bottom, p->ptlStart.x,
p->ptlStart.y, p->ptlEnd.x, p->ptlEnd.y);
}
case EMR_LINETO:
{
const EMRLINETO *line = (const EMRLINETO *)rec;
......
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