Share via


ImageList_ReplaceIcon (Windows CE 5.0)

Send Feedback

This function replaces an image with an icon.

intWINAPIImageList_ReplaceIcon(HIMAGELISThiml, inti, HICONhicon );

Parameters

  • himl
    [in] Handle to the image list.
  • i
    [in] Index of the image to replace. If i is –1, the function appends the image to the end of the list.
  • hicon
    [in] Handle to the icon that contains the bitmap and mask for the new image.

Return Values

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

Remarks

Because the system does not save hicon, you can destroy it after the function returns if the icon was created by the CreateIcon function. You do not need to destroy hicon if it was loaded by the LoadIcon function; the system automatically frees an icon resource when it is no longer needed.

You can only use the ImageList_ReplaceIcon function with icons, not cursors.

Requirements

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

See Also

ImageList_Replace | LoadIcon

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.