Group: Windows Controls - Library: comctl32
How to view icons stored in executable files (Icon Viewer) - II
HIMAGELIST ImageList_Create(
int cx,
int cy,
UINT flags,
int cInitial,
int cGrow
);
DECLARE INTEGER ImageList_Create IN comctl32;
INTEGER cx,;
INTEGER cy,;
LONG listflags,;
INTEGER cInitial,;
INTEGER cGrow
cx Width, in pixels, of each image.
cy Height, in pixels, of each image.
flags Set of bit flags that specify the type of image list to create.
cInitial Number of images that the image list initially contains.
cGrow Number of images by which the image list can grow when the system needs to make room for new images.
Returns the handle to the image list if successful, or NULL otherwise.
See also: ImageList_Destroy.