Commit 1131685a authored by Lei Zhang's avatar Lei Zhang Committed by Alexandre Julliard

gdiplus: Add a stub for GdipSetCustomLineCapStrokeJoin.

parent af1e221f
...@@ -162,3 +162,14 @@ GpStatus WINGDIPAPI GdipSetCustomLineCapBaseInset(GpCustomLineCap* custom, ...@@ -162,3 +162,14 @@ GpStatus WINGDIPAPI GdipSetCustomLineCapBaseInset(GpCustomLineCap* custom,
return NotImplemented; return NotImplemented;
} }
GpStatus WINGDIPAPI GdipSetCustomLineCapStrokeJoin(GpCustomLineCap* custom,
GpLineJoin join)
{
static int calls;
if(!(calls++))
FIXME("not implemented\n");
return NotImplemented;
}
...@@ -517,7 +517,7 @@ ...@@ -517,7 +517,7 @@
@ stdcall GdipSetCustomLineCapBaseCap(ptr long) @ stdcall GdipSetCustomLineCapBaseCap(ptr long)
@ stdcall GdipSetCustomLineCapBaseInset(ptr long) @ stdcall GdipSetCustomLineCapBaseInset(ptr long)
@ stdcall GdipSetCustomLineCapStrokeCaps(ptr long long) @ stdcall GdipSetCustomLineCapStrokeCaps(ptr long long)
@ stub GdipSetCustomLineCapStrokeJoin @ stdcall GdipSetCustomLineCapStrokeJoin(ptr long)
@ stub GdipSetCustomLineCapWidthScale @ stub GdipSetCustomLineCapWidthScale
@ stub GdipSetEffectParameters @ stub GdipSetEffectParameters
@ stub GdipSetEmpty @ stub GdipSetEmpty
......
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