.\" -*- nroff -*- .\" Generated file - DO NOT EDIT! .TH ImageList_Merge 3w "Oct 2012" "Wine API" "Wine API" .SH NAME \fBImageList_Merge\fR (COMCTL32.@) .SH SYNOPSIS HIMAGELIST ImageList_Merge ( HIMAGELIST \fIhiml1\fR, INT \fIi1\fR, HIMAGELIST \fIhiml2\fR, INT \fIi2\fR, INT \fIdx\fR, INT \fIdy\fR ) .SH DESCRIPTION .PP Create an image list containing a merged image from two image lists. .SH PARAMS \fIhiml1\fR \fB[In]\fR handle to first image list. .PP \fIi1\fR \fB[In]\fR first image index. .PP \fIhiml2\fR \fB[In]\fR handle to second image list. .PP \fIi2\fR \fB[In]\fR second image index. .PP \fIdx\fR \fB[In]\fR X offset of the second image relative to the first. .PP \fIdy\fR \fB[In]\fR Y offset of the second image relative to the first. .PP .SH RETURNS .PP \fBSuccess:\fR The newly created image list. It contains a single image consisting of the second image merged with the first. .PP \fBFailure:\fR \fBNULL\fR, if either \fIhiml1\fR or \fIhiml2\fR are invalid. .SH NOTES .PP \fB-\fR The returned image list should be deleted by the caller using ImageList_Destroy() when it is no longer required. .PP \fB-\fR If either \fIi1\fR or \fIi2\fR are not valid image indices they will be treated as a blank image. .SH IMPLEMENTATION .PP Declared in \fB"commctrl.h"\fR. .PP Implemented in \fB"dlls/comctl32/imagelist.c"\fR. .PP Debug channel \fB"imagelist"\fR.