Commit da7fe7ab authored by Detlef Riekenberg's avatar Detlef Riekenberg Committed by Alexandre Julliard

gdiplus: Implement GdipSetCustomLineCapWidthScale.

parent 2a63cf67
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment