Commit 68f5cdb2 authored by Lei Zhang's avatar Lei Zhang Committed by Alexandre Julliard

gdiplus: Add a stub for GdipSetImageAttributesNoOp.

parent 7b403d6b
......@@ -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
......
......@@ -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;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment