gdiplus: Add traces to unimplemented functions in pen.c.
This commit is contained in:
parent
8be3e5cf29
commit
ec8f002919
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue