From 0b2ea8aaf572dc0e3e785271b997176dffcaa88d Mon Sep 17 00:00:00 2001 From: Alistair Leslie-Hughes Date: Sat, 17 Mar 2012 23:20:47 +1100 Subject: [PATCH] gdiplus: Add GdipResetPageTransform stub. --- dlls/gdiplus/gdiplus.spec | 2 +- dlls/gdiplus/graphics.c | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/dlls/gdiplus/gdiplus.spec b/dlls/gdiplus/gdiplus.spec index b7d82daf958..535ecabaf3e 100644 --- a/dlls/gdiplus/gdiplus.spec +++ b/dlls/gdiplus/gdiplus.spec @@ -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) diff --git a/dlls/gdiplus/graphics.c b/dlls/gdiplus/graphics.c index f46d1cea671..ee6325a7427 100644 --- a/dlls/gdiplus/graphics.c +++ b/dlls/gdiplus/graphics.c @@ -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; +} -- 2.11.4.GIT