pub trait IImageList_Impl: Sized {
    // Required methods
    fn ImageListSetIcon(&self, picon: *const isize, nloc: i32) -> Result<()>;
    fn ImageListSetStrip(
        &self,
        pbmapsm: *const isize,
        pbmaplg: *const isize,
        nstartloc: i32,
        cmask: COLORREF
    ) -> Result<()>;
}

Required Methods§

fn ImageListSetIcon(&self, picon: *const isize, nloc: i32) -> Result<()>

fn ImageListSetStrip( &self, pbmapsm: *const isize, pbmaplg: *const isize, nstartloc: i32, cmask: COLORREF ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§