ImageList_Add

[DllImport("Comctl32.dll", SetLastError = true)][return: MarshalAs(UnmanagedType.Bool)]
public static extern bool ImageList_Add(
   IntPtr himl,
   IntPtr hbmImage,
   IntPtr hbmMask
);

Microsoft documentation: Link

Last updated