windowscodecs: Use BOOL type where appropriate.

This commit is contained in:
Frédéric Delanoy 2013-09-25 15:01:44 +02:00 committed by Alexandre Julliard
parent ce88fd16ae
commit 2413841ecb

View file

@ -232,7 +232,7 @@ static HRESULT ReadIcoDib(IStream *stream, IcoFrameDecode *result)
IWICBitmapFrameDecode *framedecode;
WICPixelFormatGUID pixelformat;
IWICBitmapSource *source;
int has_alpha=FALSE; /* if TRUE, alpha data might be in the image data */
BOOL has_alpha=FALSE; /* if TRUE, alpha data might be in the image data */
WICRect rc;
hr = IcoDibDecoder_CreateInstance(&bmp_decoder);