gdiplus: GdipGetPathGradientWrapMode implementation.
This commit is contained in:
parent
5863eabdfa
commit
58901f10f5
|
@ -555,6 +555,17 @@ GpStatus WINGDIPAPI GdipGetPathGradientSurroundColorsWithCount(GpPathGradient
|
|||
return NotImplemented;
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipGetPathGradientWrapMode(GpPathGradient *brush,
|
||||
GpWrapMode *wrapmode)
|
||||
{
|
||||
if(!brush || !wrapmode)
|
||||
return InvalidParameter;
|
||||
|
||||
*wrapmode = brush->wrap;
|
||||
|
||||
return Ok;
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipGetSolidFillColor(GpSolidFill *sf, ARGB *argb)
|
||||
{
|
||||
if(!sf || !argb)
|
||||
|
|
|
@ -341,7 +341,7 @@
|
|||
@ stub GdipGetPathGradientSurroundColorCount
|
||||
@ stdcall GdipGetPathGradientSurroundColorsWithCount(ptr ptr ptr)
|
||||
@ stub GdipGetPathGradientTransform
|
||||
@ stub GdipGetPathGradientWrapMode
|
||||
@ stdcall GdipGetPathGradientWrapMode(ptr ptr)
|
||||
@ stdcall GdipGetPathLastPoint(ptr ptr)
|
||||
@ stdcall GdipGetPathPoints(ptr ptr long)
|
||||
@ stdcall GdipGetPathPointsI(ptr ptr long)
|
||||
|
|
Loading…
Reference in New Issue