user: Cast-qual warnings fix.
This commit is contained in:
parent
57e7e2b3c8
commit
3878ebcd7c
|
@ -269,7 +269,7 @@ static BOOL is_dib_monochrome( const BITMAPINFO* info )
|
|||
|
||||
if (info->bmiHeader.biSize == sizeof(BITMAPCOREHEADER))
|
||||
{
|
||||
RGBTRIPLE *rgb = ((BITMAPCOREINFO *) info)->bmciColors;
|
||||
const RGBTRIPLE *rgb = ((const BITMAPCOREINFO*)info)->bmciColors;
|
||||
|
||||
/* Check if the first color is black */
|
||||
if ((rgb->rgbtRed == 0) && (rgb->rgbtGreen == 0) && (rgb->rgbtBlue == 0))
|
||||
|
@ -320,7 +320,7 @@ static int DIB_GetBitmapInfo( const BITMAPINFOHEADER *header, LONG *width,
|
|||
}
|
||||
if (header->biSize == sizeof(BITMAPCOREHEADER))
|
||||
{
|
||||
BITMAPCOREHEADER *core = (BITMAPCOREHEADER *)header;
|
||||
const BITMAPCOREHEADER *core = (const BITMAPCOREHEADER *)header;
|
||||
*width = core->bcWidth;
|
||||
*height = core->bcHeight;
|
||||
*bpp = core->bcBitCount;
|
||||
|
@ -329,7 +329,7 @@ static int DIB_GetBitmapInfo( const BITMAPINFOHEADER *header, LONG *width,
|
|||
}
|
||||
if (header->biSize == sizeof(BITMAPV4HEADER))
|
||||
{
|
||||
BITMAPV4HEADER *v4hdr = (BITMAPV4HEADER *)header;
|
||||
const BITMAPV4HEADER *v4hdr = (const BITMAPV4HEADER *)header;
|
||||
*width = v4hdr->bV4Width;
|
||||
*height = v4hdr->bV4Height;
|
||||
*bpp = v4hdr->bV4BitCount;
|
||||
|
@ -338,7 +338,7 @@ static int DIB_GetBitmapInfo( const BITMAPINFOHEADER *header, LONG *width,
|
|||
}
|
||||
if (header->biSize == sizeof(BITMAPV5HEADER))
|
||||
{
|
||||
BITMAPV5HEADER *v5hdr = (BITMAPV5HEADER *)header;
|
||||
const BITMAPV5HEADER *v5hdr = (const BITMAPV5HEADER *)header;
|
||||
*width = v5hdr->bV5Width;
|
||||
*height = v5hdr->bV5Height;
|
||||
*bpp = v5hdr->bV5BitCount;
|
||||
|
|
|
@ -607,7 +607,7 @@ static UINT ICO_ExtractIconExW(
|
|||
const IMAGE_RESOURCE_DIRECTORY *resdir;
|
||||
|
||||
/* go down this resource entry, name */
|
||||
resdir = (PIMAGE_RESOURCE_DIRECTORY)((char *)rootresdir + xresent->u2.s3.OffsetToDirectory);
|
||||
resdir = (const IMAGE_RESOURCE_DIRECTORY *)((const char *)rootresdir + xresent->u2.s3.OffsetToDirectory);
|
||||
|
||||
/* default language (0) */
|
||||
resdir = find_entry_default(resdir,rootresdir);
|
||||
|
|
|
@ -2659,7 +2659,7 @@ int SPY_Init(void)
|
|||
q++;
|
||||
}
|
||||
q--;
|
||||
cc_array[i].lastmsg = (USER_MSG *)q;
|
||||
cc_array[i].lastmsg = q;
|
||||
|
||||
i++;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue