Scroll to navigation

ImageList_SetColorTable(3w) Wine API ImageList_SetColorTable(3w)

NAME

ImageList_SetColorTable (COMCTL32.@)

SYNOPSIS

UINT ImageList_SetColorTable
(
HIMAGELIST himl,
UINT uStartIndex,
UINT cEntries,
CONST RGBQUAD* prgb
)
 

DESCRIPTION

Sets the color table of an image list.
 

PARAMS

himl [In] Handle to the image list.
uStartIndex [In] The first index to set.
cEntries [In] Number of entries to set.
prgb [In] New color information for color table for the image list.
 

RETURNS

Success: Number of entries in the table that were set.
Failure: Zero.
 

SEE

ImageList_Create(), SetDIBColorTable(3w)
 

IMPLEMENTATION

Exported by ordinal only. Use GetProcAddress(3w) to obtain a pointer to the function.
Implemented in "dlls/comctl32/imagelist.c".
Debug channel "imagelist".
Oct 2012 Wine API