ImageList_Merge (COMCTL32.@)
HIMAGELIST ImageList_Merge ( HIMAGELIST himl1, INT i1, HIMAGELIST himl2, INT i2, INT dx, INT dy )
Create an image list containing a merged image from two image lists.
himl1 | [In] | handle to first image list. |
i1 | [In] | first image index. |
himl2 | [In] | handle to second image list. |
i2 | [In] | second image index. |
dx | [In] | X offset of the second image relative to the first. |
dy | [In] | Y offset of the second image relative to the first. |
Success: The newly created image list. It contains a single image consisting of the second image merged with the first.
Failure: NULL, if either himl1 or himl2 are invalid.
- The returned image list should be deleted by the caller using ImageList_Destroy when it is no longer required.
- If either i1 or i2 are not valid image indices they will be treated as a blank image.
Defined in "commctrl.h".
Implemented in "dlls/comctl32/imagelist.c". source.winehq.org/source/dlls/comctl32/imagelist.c
Debug channel "imagelist".
Copyright © 2008 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Jul 2008.