gdiplus: Add a stub for GdipSetImageAttributesOutputChannelColorProfile.

This commit is contained in:
Lei Zhang 2008-04-09 13:26:48 -07:00 committed by Alexandre Julliard
parent 139da784bf
commit 5ba99f4eb5
2 changed files with 13 additions and 1 deletions

View File

@ -527,7 +527,7 @@
@ stdcall GdipSetImageAttributesGamma(ptr long long long)
@ stdcall GdipSetImageAttributesNoOp(ptr long long)
@ stdcall GdipSetImageAttributesOutputChannel(ptr long long long)
@ stub GdipSetImageAttributesOutputChannelColorProfile
@ stdcall GdipSetImageAttributesOutputChannelColorProfile(ptr long long ptr)
@ stub GdipSetImageAttributesRemapTable
@ stub GdipSetImageAttributesThreshold
@ stub GdipSetImageAttributesToIdentity

View File

@ -134,3 +134,15 @@ GpStatus WINGDIPAPI GdipSetImageAttributesOutputChannel(GpImageAttributes *image
return NotImplemented;
}
GpStatus WINGDIPAPI GdipSetImageAttributesOutputChannelColorProfile(GpImageAttributes *imageAttr,
ColorAdjustType type, BOOL enableFlag,
GDIPCONST WCHAR *colorProfileFilename)
{
static int calls;
if(!(calls++))
FIXME("not implemented\n");
return NotImplemented;
}