Module: wine Branch: master Commit: ec8f002919c23dc1ed949f5df68a765879fac6a4 URL: http://source.winehq.org/git/wine.git/?a=commit;h=ec8f002919c23dc1ed949f5df6...
Author: Vincent Povirk vincent@codeweavers.com Date: Fri Dec 18 16:30:26 2009 -0600
gdiplus: Add traces to unimplemented functions in pen.c.
---
dlls/gdiplus/pen.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/dlls/gdiplus/pen.c b/dlls/gdiplus/pen.c index 6299d67..930317c 100644 --- a/dlls/gdiplus/pen.c +++ b/dlls/gdiplus/pen.c @@ -393,6 +393,8 @@ GpStatus WINGDIPAPI GdipResetPenTransform(GpPen *pen) { static int calls;
+ TRACE("(%p)\n", pen); + if(!pen) return InvalidParameter;
@@ -406,6 +408,8 @@ GpStatus WINGDIPAPI GdipScalePenTransform(GpPen *pen, REAL sx, REAL sy, GpMatrix { static int calls;
+ TRACE("(%p,%0.2f,%0.2f,%u)\n", pen, sx, sy, order); + if(!pen) return InvalidParameter;