gdiplus: Stub GdipGetLinePresetBlend[Count].

This commit is contained in:
Vincent Povirk 2009-09-14 15:42:21 -05:00 committed by Alexandre Julliard
parent 0595fc5e03
commit 52e91927fd
2 changed files with 24 additions and 2 deletions

View file

@ -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;

View file

@ -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)