wineps: Handle EMR_POLYPOLYLINE record in spool files.
This commit is contained in:
parent
53d2a32d06
commit
fd107041ae
1 changed files with 8 additions and 0 deletions
|
@ -151,6 +151,14 @@ static int WINAPI hmf_proc(HDC hdc, HANDLETABLE *htable,
|
|||
|
||||
return PSDRV_PolyBezier(&data->pdev->dev, (const POINT *)p->aptl, p->cptl);
|
||||
}
|
||||
case EMR_POLYPOLYLINE:
|
||||
{
|
||||
const EMRPOLYPOLYLINE *p = (const EMRPOLYPOLYLINE *)rec;
|
||||
|
||||
return PSDRV_PolyPolyline(&data->pdev->dev,
|
||||
(const POINT *)(p->aPolyCounts + p->nPolys),
|
||||
p->aPolyCounts, p->nPolys);
|
||||
}
|
||||
case EMR_EOF:
|
||||
return PSDRV_EndPage(&data->pdev->dev);
|
||||
case EMR_SELECTOBJECT:
|
||||
|
|
Loading…
Add table
Reference in a new issue