mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 12:49:45 +00:00
gdiplus: Add a stub for GdipSetImageAttributesOutputChannelColorProfile.
This commit is contained in:
parent
139da784bf
commit
5ba99f4eb5
@ -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
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user