Commit 8d2f5f22 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

wineps: Handle EMR_EOF record in spool files.

parent 8ce85059
......@@ -139,6 +139,8 @@ static int WINAPI hmf_proc(HDC hdc, HANDLETABLE *htable,
{
case EMR_HEADER:
return PSDRV_StartPage(&data->pdev->dev);
case EMR_EOF:
return PSDRV_EndPage(&data->pdev->dev);
default:
FIXME("unsupported record: %ld\n", rec->iType);
}
......
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