gdiplus: Add traces to unimplemented functions in pen.c.

This commit is contained in:
Vincent Povirk 2009-12-18 16:30:26 -06:00 committed by Alexandre Julliard
parent 8be3e5cf29
commit ec8f002919
1 changed files with 4 additions and 0 deletions

View File

@ -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;