IMAGEINFO  1S8M_QI 

The IMAGEINFO structure contains information about an image in an image list. This structure is used with the ImageList_GetImageInfo2UI30FK function.

typedef struct _IMAGEINFO { 

    HBITMAP hbmImage;  // bitmap containing the images

    HBITMAP hbmMask;   // handle to a monochrome bitmap

    int     Unused1;   // not used

    int     Unused2;   // not used

    RECT    rcImage;   // bounding rectangle of the image

} IMAGEINFO;

 

Members

hbmMask

Handle to a monochrome bitmap that contains the masks for the images. If the image list does not contain a mask, this member is NULL.

rcImage

Bounding rectangle of the image within the bitmap specified by hbmImage.