gdiplus: Add a stub for GdipSetCustomLineCapStrokeJoin.
This commit is contained in:
parent
af1e221f17
commit
1131685a94
|
@ -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 @@
|
||||||
@ 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
|
||||||
|
|
Loading…
Reference in New Issue