[][src]Struct winapi::um::shobjidl_core::IDesktopWallpaperVtbl

#[repr(C)]pub struct IDesktopWallpaperVtbl {
    pub parent: IUnknownVtbl,
    pub SetWallpaper: unsafe extern "system" fn(This: *mut IDesktopWallpaper, monitorID: LPCWSTR, wallpaper: LPCWSTR) -> HRESULT,
    pub GetWallpaper: unsafe extern "system" fn(This: *mut IDesktopWallpaper, monitorID: LPCWSTR, wallpaper: *mut LPWSTR) -> HRESULT,
    pub GetMonitorDevicePathAt: unsafe extern "system" fn(This: *mut IDesktopWallpaper, monitorIndex: UINT, monitorID: *mut LPWSTR) -> HRESULT,
    pub GetMonitorDevicePathCount: unsafe extern "system" fn(This: *mut IDesktopWallpaper, count: *mut UINT) -> HRESULT,
    pub GetMonitorRECT: unsafe extern "system" fn(This: *mut IDesktopWallpaper, monitorID: LPCWSTR, displayRect: *mut RECT) -> HRESULT,
    pub SetBackgroundColor: unsafe extern "system" fn(This: *mut IDesktopWallpaper, color: COLORREF) -> HRESULT,
    pub GetBackgroundColor: unsafe extern "system" fn(This: *mut IDesktopWallpaper, color: *mut COLORREF) -> HRESULT,
    pub SetPosition: unsafe extern "system" fn(This: *mut IDesktopWallpaper, position: DESKTOP_WALLPAPER_POSITION) -> HRESULT,
    pub GetPosition: unsafe extern "system" fn(This: *mut IDesktopWallpaper, position: *mut DESKTOP_WALLPAPER_POSITION) -> HRESULT,
    pub SetSlideshow: unsafe extern "system" fn(This: *mut IDesktopWallpaper, items: *mut IShellItemArray) -> HRESULT,
    pub GetSlideshow: unsafe extern "system" fn(This: *mut IDesktopWallpaper, items: *mut *mut IShellItemArray) -> HRESULT,
    pub SetSlideshowOptions: unsafe extern "system" fn(This: *mut IDesktopWallpaper, options: DESKTOP_SLIDESHOW_OPTIONS, slideshowTick: UINT) -> HRESULT,
    pub GetSlideshowOptions: unsafe extern "system" fn(This: *mut IDesktopWallpaper, options: *mut DESKTOP_SLIDESHOW_OPTIONS, slideshowTick: *mut UINT) -> HRESULT,
    pub AdvanceSlideshow: unsafe extern "system" fn(This: *mut IDesktopWallpaper, monitorID: LPCWSTR, direction: DESKTOP_SLIDESHOW_DIRECTION) -> HRESULT,
    pub GetStatus: unsafe extern "system" fn(This: *mut IDesktopWallpaper, state: *mut DESKTOP_SLIDESHOW_STATE) -> HRESULT,
    pub Enable: unsafe extern "system" fn(This: *mut IDesktopWallpaper, enable: BOOL) -> HRESULT,
}

Fields

parent: IUnknownVtblSetWallpaper: unsafe extern "system" fn(This: *mut IDesktopWallpaper, monitorID: LPCWSTR, wallpaper: LPCWSTR) -> HRESULTGetWallpaper: unsafe extern "system" fn(This: *mut IDesktopWallpaper, monitorID: LPCWSTR, wallpaper: *mut LPWSTR) -> HRESULTGetMonitorDevicePathAt: unsafe extern "system" fn(This: *mut IDesktopWallpaper, monitorIndex: UINT, monitorID: *mut LPWSTR) -> HRESULTGetMonitorDevicePathCount: unsafe extern "system" fn(This: *mut IDesktopWallpaper, count: *mut UINT) -> HRESULTGetMonitorRECT: unsafe extern "system" fn(This: *mut IDesktopWallpaper, monitorID: LPCWSTR, displayRect: *mut RECT) -> HRESULTSetBackgroundColor: unsafe extern "system" fn(This: *mut IDesktopWallpaper, color: COLORREF) -> HRESULTGetBackgroundColor: unsafe extern "system" fn(This: *mut IDesktopWallpaper, color: *mut COLORREF) -> HRESULTSetPosition: unsafe extern "system" fn(This: *mut IDesktopWallpaper, position: DESKTOP_WALLPAPER_POSITION) -> HRESULTGetPosition: unsafe extern "system" fn(This: *mut IDesktopWallpaper, position: *mut DESKTOP_WALLPAPER_POSITION) -> HRESULTSetSlideshow: unsafe extern "system" fn(This: *mut IDesktopWallpaper, items: *mut IShellItemArray) -> HRESULTGetSlideshow: unsafe extern "system" fn(This: *mut IDesktopWallpaper, items: *mut *mut IShellItemArray) -> HRESULTSetSlideshowOptions: unsafe extern "system" fn(This: *mut IDesktopWallpaper, options: DESKTOP_SLIDESHOW_OPTIONS, slideshowTick: UINT) -> HRESULTGetSlideshowOptions: unsafe extern "system" fn(This: *mut IDesktopWallpaper, options: *mut DESKTOP_SLIDESHOW_OPTIONS, slideshowTick: *mut UINT) -> HRESULTAdvanceSlideshow: unsafe extern "system" fn(This: *mut IDesktopWallpaper, monitorID: LPCWSTR, direction: DESKTOP_SLIDESHOW_DIRECTION) -> HRESULTGetStatus: unsafe extern "system" fn(This: *mut IDesktopWallpaper, state: *mut DESKTOP_SLIDESHOW_STATE) -> HRESULTEnable: unsafe extern "system" fn(This: *mut IDesktopWallpaper, enable: BOOL) -> 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.