gdiplus: Stub for GdipScalePenTransform.

This commit is contained in:
Nikolay Sivov 2008-12-27 21:35:40 +03:00 committed by Alexandre Julliard
parent 62512971fe
commit f4c017eac1
2 changed files with 14 additions and 1 deletions

View File

@ -499,7 +499,7 @@
@ stub GdipScaleLineTransform @ stub GdipScaleLineTransform
@ stdcall GdipScaleMatrix(ptr long long long) @ stdcall GdipScaleMatrix(ptr long long long)
@ stub GdipScalePathGradientTransform @ stub GdipScalePathGradientTransform
@ stub GdipScalePenTransform @ stdcall GdipScalePenTransform(ptr long long long)
@ stdcall GdipScaleTextureTransform(ptr long long long) @ stdcall GdipScaleTextureTransform(ptr long long long)
@ stdcall GdipScaleWorldTransform(ptr long long long) @ stdcall GdipScaleWorldTransform(ptr long long long)
@ stdcall GdipSetAdjustableArrowCapFillState(ptr long) @ stdcall GdipSetAdjustableArrowCapFillState(ptr long)

View File

@ -398,6 +398,19 @@ GpStatus WINGDIPAPI GdipResetPenTransform(GpPen *pen)
return NotImplemented; return NotImplemented;
} }
GpStatus WINGDIPAPI GdipScalePenTransform(GpPen *pen, REAL sx, REAL sy, GpMatrixOrder order)
{
static int calls;
if(!pen)
return InvalidParameter;
if(!(calls++))
FIXME("(%p, %.2f, %.2f, %d) stub\n", pen, sx, sy, order);
return NotImplemented;
}
GpStatus WINGDIPAPI GdipSetPenBrushFill(GpPen *pen, GpBrush *brush) GpStatus WINGDIPAPI GdipSetPenBrushFill(GpPen *pen, GpBrush *brush)
{ {
TRACE("(%p, %p)\n", pen, brush); TRACE("(%p, %p)\n", pen, brush);