예제 #1
0
 void ImageList::replace ( const Cursor& image, int index )
 {
     const Icon icon(Icon::proxy(
         reinterpret_cast<::HICON>((::HCURSOR)image.handle())
         ));
     replace(icon,index);
 }
예제 #2
0
 int ImageList::add ( const Cursor& image )
 {
     const Icon icon(Icon::proxy(
         reinterpret_cast<::HICON>((::HCURSOR)image.handle())
         ));
     return (add(icon));
 }