gdiplus: Add a stub for GdipSetImageAttributesThreshold.

This commit is contained in:
Lei Zhang 2008-04-10 12:40:14 -07:00 committed by Alexandre Julliard
parent 65445b9e7e
commit 03c7d55830
2 changed files with 12 additions and 1 deletions

View File

@ -529,7 +529,7 @@
@ stdcall GdipSetImageAttributesOutputChannel(ptr long long long)
@ stdcall GdipSetImageAttributesOutputChannelColorProfile(ptr long long ptr)
@ stdcall GdipSetImageAttributesRemapTable(ptr long long long ptr)
@ stub GdipSetImageAttributesThreshold
@ stdcall GdipSetImageAttributesThreshold(ptr long long long)
@ stub GdipSetImageAttributesToIdentity
@ stdcall GdipSetImageAttributesWrapMode(ptr long long long)
@ stdcall GdipSetImagePalette(ptr ptr)

View File

@ -158,3 +158,14 @@ GpStatus WINGDIPAPI GdipSetImageAttributesRemapTable(GpImageAttributes *imageAtt
return NotImplemented;
}
GpStatus WINGDIPAPI GdipSetImageAttributesThreshold(GpImageAttributes *imageAttr,
ColorAdjustType type, BOOL enableFlag, REAL threshold)
{
static int calls;
if(!(calls++))
FIXME("not implemented\n");
return NotImplemented;
}