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 is 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 is not a valid image index, they will be treated as blank images.
Declared in "include/commctrl.h". gitlab.winehq.org/wine/wine/blob/master/include/commctrl.h
Implemented in "dlls/comctl32/imagelist.c". gitlab.winehq.org/wine/wine/blob/master/dlls/comctl32/imagelist.c
Debug channel "imagelist".
Copyright © 2024 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Nov 2024.