gdiplus: Implement GdipSetCustomLineCapWidthScale.

This commit is contained in:
Detlef Riekenberg 2013-04-17 22:41:41 +02:00 committed by Alexandre Julliard
parent 2a63cf67ab
commit da7fe7ab55
1 changed files with 6 additions and 7 deletions

View File

@ -221,17 +221,16 @@ GpStatus WINGDIPAPI GdipSetCustomLineCapStrokeJoin(GpCustomLineCap* custom,
return Ok;
}
GpStatus WINGDIPAPI GdipSetCustomLineCapWidthScale(GpCustomLineCap* custom,
REAL width)
GpStatus WINGDIPAPI GdipSetCustomLineCapWidthScale(GpCustomLineCap* custom, REAL width)
{
static int calls;
TRACE("(%p,%0.2f)\n", custom, width);
if(!(calls++))
FIXME("not implemented\n");
if(!custom)
return InvalidParameter;
return NotImplemented;
custom->scale = width;
return Ok;
}
GpStatus WINGDIPAPI GdipGetCustomLineCapBaseCap(GpCustomLineCap *customCap, GpLineCap *baseCap)