Share via


ImageList_AddMasked (Windows CE 5.0)

Send Feedback

This function adds an image or images to an image list, generating a mask from the specified bitmap.

intWINAPIImageList_AddMasked(HIMAGELISThiml, HBITMAPhbmImage, COLORREFcrMask );

Parameters

  • himl
    [in] Handle to the image list.
  • hbmImage
    [in] Handle to the bitmap that contains one or more images. The number of images is inferred from the width of the bitmap.
  • crMask
    [in] Color used to generate the mask. Each pixel of this color in the specified bitmap is changed to black, and the corresponding bit in the mask is set to 1.

Return Values

The index of the first new image indicates success. –1 indicates failure.

Remarks

The ImageList_AddMasked function copies the bitmap to an internal data structure. Be sure to use the DeleteObject function to delete hbmImage and crMask after the function returns.

Requirements

OS Versions: Windows CE 1.0 and later.
Header: Commctrl.h.
Link Library: Commctrl.lib, Imgctl.lib.

See Also

CreateBitmap | DeleteObject | ImageList_Create | COLORREF

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.