gdiplus: Stub GdipGetLinePresetBlend[Count].
This commit is contained in:
parent
0595fc5e03
commit
52e91927fd
|
@ -1582,6 +1582,28 @@ GpStatus WINGDIPAPI GdipSetLinePresetBlend(GpLineGradient *brush,
|
||||||
return NotImplemented;
|
return NotImplemented;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
GpStatus WINGDIPAPI GdipGetLinePresetBlend(GpLineGradient *brush,
|
||||||
|
ARGB *blend, REAL* positions, INT count)
|
||||||
|
{
|
||||||
|
static int calls;
|
||||||
|
|
||||||
|
if(!(calls++))
|
||||||
|
FIXME("not implemented\n");
|
||||||
|
|
||||||
|
return NotImplemented;
|
||||||
|
}
|
||||||
|
|
||||||
|
GpStatus WINGDIPAPI GdipGetLinePresetBlendCount(GpLineGradient *brush,
|
||||||
|
INT *count)
|
||||||
|
{
|
||||||
|
static int calls;
|
||||||
|
|
||||||
|
if(!(calls++))
|
||||||
|
FIXME("not implemented\n");
|
||||||
|
|
||||||
|
return NotImplemented;
|
||||||
|
}
|
||||||
|
|
||||||
GpStatus WINGDIPAPI GdipResetLineTransform(GpLineGradient *brush)
|
GpStatus WINGDIPAPI GdipResetLineTransform(GpLineGradient *brush)
|
||||||
{
|
{
|
||||||
static int calls;
|
static int calls;
|
||||||
|
|
|
@ -304,8 +304,8 @@
|
||||||
@ stdcall GdipGetLineBlendCount(ptr ptr)
|
@ stdcall GdipGetLineBlendCount(ptr ptr)
|
||||||
@ stdcall GdipGetLineColors(ptr ptr)
|
@ stdcall GdipGetLineColors(ptr ptr)
|
||||||
@ stdcall GdipGetLineGammaCorrection(ptr ptr)
|
@ stdcall GdipGetLineGammaCorrection(ptr ptr)
|
||||||
@ stub GdipGetLinePresetBlend
|
@ stdcall GdipGetLinePresetBlend(ptr ptr ptr long)
|
||||||
@ stub GdipGetLinePresetBlendCount
|
@ stdcall GdipGetLinePresetBlendCount(ptr ptr)
|
||||||
@ stdcall GdipGetLineRect(ptr ptr)
|
@ stdcall GdipGetLineRect(ptr ptr)
|
||||||
@ stdcall GdipGetLineRectI(ptr ptr)
|
@ stdcall GdipGetLineRectI(ptr ptr)
|
||||||
@ stdcall GdipGetLineSpacing(ptr long ptr)
|
@ stdcall GdipGetLineSpacing(ptr long ptr)
|
||||||
|
|
Loading…
Reference in New Issue