include: Add definition for IWICColorTransform.
This commit is contained in:
parent
631d9860ad
commit
0454e046c2
|
@ -198,7 +198,6 @@ cpp_quote("#define WINCODEC_ERR_UNSUPPORTEDOPERATION 0x88982f81")
|
||||||
cpp_quote("#define WINCODEC_ERR_INSUFFICIENTBUFFER 0x88982f8c")
|
cpp_quote("#define WINCODEC_ERR_INSUFFICIENTBUFFER 0x88982f8c")
|
||||||
|
|
||||||
interface IWICPalette;
|
interface IWICPalette;
|
||||||
interface IWICColorTransform;
|
|
||||||
interface IWICFastMetadataEncoder;
|
interface IWICFastMetadataEncoder;
|
||||||
interface IWICMetadataQueryReader;
|
interface IWICMetadataQueryReader;
|
||||||
interface IWICMetadataQueryWriter;
|
interface IWICMetadataQueryWriter;
|
||||||
|
@ -712,6 +711,19 @@ interface IWICBitmapClipper : IWICBitmapSource
|
||||||
[in] const WICRect *prc);
|
[in] const WICRect *prc);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[
|
||||||
|
object,
|
||||||
|
uuid(b66f034f-d0e2-40ab-b436-6de39e321a94)
|
||||||
|
]
|
||||||
|
interface IWICColorTransform : IWICBitmapSource
|
||||||
|
{
|
||||||
|
HRESULT Initialize(
|
||||||
|
[in] IWICBitmapSource *pIBitmapSource,
|
||||||
|
[in] IWICColorContext *pIContextSource,
|
||||||
|
[in] IWICColorContext *pIContextDest,
|
||||||
|
[in] REFWICPixelFormatGUID pixelFmtDest);
|
||||||
|
}
|
||||||
|
|
||||||
cpp_quote("DEFINE_GUID(CLSID_WICImagingFactory, 0xcacaf262,0x9370,0x4615,0xa1,0x3b,0x9f,0x55,0x39,0xda,0x4c,0x0a);")
|
cpp_quote("DEFINE_GUID(CLSID_WICImagingFactory, 0xcacaf262,0x9370,0x4615,0xa1,0x3b,0x9f,0x55,0x39,0xda,0x4c,0x0a);")
|
||||||
|
|
||||||
[
|
[
|
||||||
|
|
Loading…
Reference in New Issue