Commit 0b2ea8aa authored by Alistair Leslie-Hughes's avatar Alistair Leslie-Hughes Committed by Alexandre Julliard

gdiplus: Add GdipResetPageTransform stub.

parent afbf2894
......@@ -457,7 +457,7 @@
457 stdcall GdipResetClip(ptr)
458 stub GdipResetImageAttributes
459 stdcall GdipResetLineTransform(ptr)
460 stub GdipResetPageTransform
460 stdcall GdipResetPageTransform(ptr)
461 stdcall GdipResetPath(ptr)
462 stub GdipResetPathGradientTransform
463 stdcall GdipResetPenTransform(ptr)
......
......@@ -6501,3 +6501,15 @@ cleanup:
GdipDeleteRegion(rgn);
return stat;
}
GpStatus WINGDIPAPI GdipResetPageTransform(GpGraphics *graphics)
{
static int calls;
TRACE("(%p) stub\n", graphics);
if(!(calls++))
FIXME("not implemented\n");
return NotImplemented;
}
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