IMAGEINFOIMAGEINFO*
*



Contents  *



Index  *Topic Contents
*Previous Topic: Image List Structures
*Next Topic: IMAGELISTDRAWPARAMS

IMAGEINFO


typedef struct _IMAGEINFO { 
    HBITMAP hbmImage; 
    HBITMAP hbmMask; 
    int     Unused1; 
    int     Unused2; 
    RECT    rcImage; 
} IMAGEINFO, FAR *LPIMAGEINFO; 

Contains information about an image in an image list. This structure is used with the ImageList_GetImageInfo function.

hbmImage
Handle to the bitmap that contains the images.
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.
Unused1
Not used. This member should always be zero.
Unused2
Not used. This member should always be zero.
rcImage
Bounding rectangle of the specified image within the bitmap specified by hbmImage.

Up Top of Page
© 1997 Microsoft Corporation. All rights reserved. Terms of Use.