mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
gdiplus: Add a stub for GdipSetImageAttributesNoOp.
This commit is contained in:
parent
7b403d6b46
commit
68f5cdb28e
2 changed files with 12 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue