gdiplus: Add a stub for GdipSetImageAttributesNoOp.

This commit is contained in:
Lei Zhang 2008-04-09 13:16:32 -07:00 committed by Alexandre Julliard
parent 7b403d6b46
commit 68f5cdb28e
2 changed files with 12 additions and 1 deletions

View file

@ -525,7 +525,7 @@
@ stdcall GdipSetImageAttributesColorKeys(ptr long long long long)
@ stdcall GdipSetImageAttributesColorMatrix(ptr long long ptr ptr long)
@ stdcall GdipSetImageAttributesGamma(ptr long long long)
@ stub GdipSetImageAttributesNoOp
@ stdcall GdipSetImageAttributesNoOp(ptr long long)
@ stub GdipSetImageAttributesOutputChannel
@ stub GdipSetImageAttributesOutputChannelColorProfile
@ stub GdipSetImageAttributesRemapTable

View file

@ -112,3 +112,14 @@ GpStatus WINGDIPAPI GdipSetImageAttributesGamma(GpImageAttributes *imageAttr,
return NotImplemented;
}
GpStatus WINGDIPAPI GdipSetImageAttributesNoOp(GpImageAttributes *imageAttr,
ColorAdjustType type, BOOL enableFlag)
{
static int calls;
if(!(calls++))
FIXME("not implemented\n");
return NotImplemented;
}