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