gdiplus: Add a stub for GdipSetImageAttributesToIdentity.

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

View File

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

View File

@ -169,3 +169,14 @@ GpStatus WINGDIPAPI GdipSetImageAttributesThreshold(GpImageAttributes *imageAttr
return NotImplemented;
}
GpStatus WINGDIPAPI GdipSetImageAttributesToIdentity(GpImageAttributes *imageAttr,
ColorAdjustType type)
{
static int calls;
if(!(calls++))
FIXME("not implemented\n");
return NotImplemented;
}