[][src]Struct winapi::um::commoncontrols::IImageList2Vtbl

#[repr(C)]pub struct IImageList2Vtbl {
    pub parent: IImageListVtbl,
    pub Resize: unsafe extern "system" fn(This: *mut IImageList2, cxNewIconSize: c_int, cyNewIconSize: c_int) -> HRESULT,
    pub GetOriginalSize: unsafe extern "system" fn(This: *mut IImageList2, iImage: c_int, dwFlags: DWORD, pcx: *mut c_int, pcy: *mut c_int) -> HRESULT,
    pub SetOriginalSize: unsafe extern "system" fn(This: *mut IImageList2, iImage: c_int, cx: c_int, cy: c_int) -> HRESULT,
    pub SetCallback: unsafe extern "system" fn(This: *mut IImageList2, punk: *mut IUnknown) -> HRESULT,
    pub GetCallback: unsafe extern "system" fn(This: *mut IImageList2, riid: REFIID, ppv: *mut *mut c_void) -> HRESULT,
    pub ForceImagePresent: unsafe extern "system" fn(This: *mut IImageList2, iImage: c_int, dwFlags: DWORD) -> HRESULT,
    pub DiscardImages: unsafe extern "system" fn(This: *mut IImageList2, iFirstImage: c_int, iLastImage: c_int, dwFlags: DWORD) -> HRESULT,
    pub PreloadImages: unsafe extern "system" fn(This: *mut IImageList2, pimldp: *mut IMAGELISTDRAWPARAMS) -> HRESULT,
    pub GetStatistics: unsafe extern "system" fn(This: *mut IImageList2, pils: *mut IMAGELISTSTATS) -> HRESULT,
    pub Initialize: unsafe extern "system" fn(This: *mut IImageList2, cx: c_int, cy: c_int, flags: UINT, cInitial: c_int, cGrow: c_int) -> HRESULT,
    pub Replace2: unsafe extern "system" fn(This: *mut IImageList2, i: c_int, hbmImage: HBITMAP, hbmMask: HBITMAP, punk: *mut IUnknown, dwFlags: DWORD) -> HRESULT,
    pub ReplaceFromImageList: unsafe extern "system" fn(This: *mut IImageList2, i: c_int, pil: *mut IImageList, iSrc: c_int, punk: *mut IUnknown, dwFlags: DWORD) -> HRESULT,
}

Fields

parent: IImageListVtblResize: unsafe extern "system" fn(This: *mut IImageList2, cxNewIconSize: c_int, cyNewIconSize: c_int) -> HRESULTGetOriginalSize: unsafe extern "system" fn(This: *mut IImageList2, iImage: c_int, dwFlags: DWORD, pcx: *mut c_int, pcy: *mut c_int) -> HRESULTSetOriginalSize: unsafe extern "system" fn(This: *mut IImageList2, iImage: c_int, cx: c_int, cy: c_int) -> HRESULTSetCallback: unsafe extern "system" fn(This: *mut IImageList2, punk: *mut IUnknown) -> HRESULTGetCallback: unsafe extern "system" fn(This: *mut IImageList2, riid: REFIID, ppv: *mut *mut c_void) -> HRESULTForceImagePresent: unsafe extern "system" fn(This: *mut IImageList2, iImage: c_int, dwFlags: DWORD) -> HRESULTDiscardImages: unsafe extern "system" fn(This: *mut IImageList2, iFirstImage: c_int, iLastImage: c_int, dwFlags: DWORD) -> HRESULTPreloadImages: unsafe extern "system" fn(This: *mut IImageList2, pimldp: *mut IMAGELISTDRAWPARAMS) -> HRESULTGetStatistics: unsafe extern "system" fn(This: *mut IImageList2, pils: *mut IMAGELISTSTATS) -> HRESULTInitialize: unsafe extern "system" fn(This: *mut IImageList2, cx: c_int, cy: c_int, flags: UINT, cInitial: c_int, cGrow: c_int) -> HRESULTReplace2: unsafe extern "system" fn(This: *mut IImageList2, i: c_int, hbmImage: HBITMAP, hbmMask: HBITMAP, punk: *mut IUnknown, dwFlags: DWORD) -> HRESULTReplaceFromImageList: unsafe extern "system" fn(This: *mut IImageList2, i: c_int, pil: *mut IImageList, iSrc: c_int, punk: *mut IUnknown, dwFlags: DWORD) -> HRESULT

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.