int ImageList_Add(  HIMAGELIST himl,
    HBITMAP hbmImage,
    HBITMAP hbmMask
);
用这个函数可以添加一个 image 到一个 image list 中,我现在想知道 如何根据 HBITMAP hbmImage 生成  HBITMAP hbmMask ?比如  HBITMAP hbmImage 是一个 16*16 的 24位 位图 ,  只有 红、绿 2种颜色 ,我只想显示其中的红色,那掩码位图是什么样的?我们知道,在 GDI 的 raster-operation 操作中,有许多种组合 , 谁知道 ImageList_Add 是用的哪个算法?