gdiplus: Add a stub for GdipSetImageAttributesToIdentity.
This commit is contained in:
parent
03c7d55830
commit
6a44f19179
|
@ -530,7 +530,7 @@
|
||||||
@ stdcall GdipSetImageAttributesOutputChannelColorProfile(ptr long long ptr)
|
@ stdcall GdipSetImageAttributesOutputChannelColorProfile(ptr long long ptr)
|
||||||
@ stdcall GdipSetImageAttributesRemapTable(ptr long long long ptr)
|
@ stdcall GdipSetImageAttributesRemapTable(ptr long long long ptr)
|
||||||
@ stdcall GdipSetImageAttributesThreshold(ptr long long long)
|
@ stdcall GdipSetImageAttributesThreshold(ptr long long long)
|
||||||
@ stub GdipSetImageAttributesToIdentity
|
@ stdcall GdipSetImageAttributesToIdentity(ptr long)
|
||||||
@ stdcall GdipSetImageAttributesWrapMode(ptr long long long)
|
@ stdcall GdipSetImageAttributesWrapMode(ptr long long long)
|
||||||
@ stdcall GdipSetImagePalette(ptr ptr)
|
@ stdcall GdipSetImagePalette(ptr ptr)
|
||||||
@ stub GdipSetInfinite
|
@ stub GdipSetInfinite
|
||||||
|
|
|
@ -169,3 +169,14 @@ GpStatus WINGDIPAPI GdipSetImageAttributesThreshold(GpImageAttributes *imageAttr
|
||||||
|
|
||||||
return NotImplemented;
|
return NotImplemented;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
GpStatus WINGDIPAPI GdipSetImageAttributesToIdentity(GpImageAttributes *imageAttr,
|
||||||
|
ColorAdjustType type)
|
||||||
|
{
|
||||||
|
static int calls;
|
||||||
|
|
||||||
|
if(!(calls++))
|
||||||
|
FIXME("not implemented\n");
|
||||||
|
|
||||||
|
return NotImplemented;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue