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

#[repr(C)]pub struct IDesktopWallpaper {
    pub lpVtbl: *const IDesktopWallpaperVtbl,
}

Fields

lpVtbl: *const IDesktopWallpaperVtbl

Implementations

impl IDesktopWallpaper[src]

pub unsafe fn SetWallpaper(
    &self,
    monitorID: LPCWSTR,
    wallpaper: LPCWSTR
) -> HRESULT
[src]

pub unsafe fn GetWallpaper(
    &self,
    monitorID: LPCWSTR,
    wallpaper: *mut LPWSTR
) -> HRESULT
[src]

pub unsafe fn GetMonitorDevicePathAt(
    &self,
    monitorIndex: UINT,
    monitorID: *mut LPWSTR
) -> HRESULT
[src]

pub unsafe fn GetMonitorDevicePathCount(&self, count: *mut UINT) -> HRESULT[src]

pub unsafe fn GetMonitorRECT(
    &self,
    monitorID: LPCWSTR,
    displayRect: *mut RECT
) -> HRESULT
[src]

pub unsafe fn SetBackgroundColor(&self, color: COLORREF) -> HRESULT[src]

pub unsafe fn GetBackgroundColor(&self, color: *mut COLORREF) -> HRESULT[src]

pub unsafe fn SetPosition(
    &self,
    position: DESKTOP_WALLPAPER_POSITION
) -> HRESULT
[src]

pub unsafe fn GetPosition(
    &self,
    position: *mut DESKTOP_WALLPAPER_POSITION
) -> HRESULT
[src]

pub unsafe fn SetSlideshow(&self, items: *mut IShellItemArray) -> HRESULT[src]

pub unsafe fn GetSlideshow(&self, items: *mut *mut IShellItemArray) -> HRESULT[src]

pub unsafe fn SetSlideshowOptions(
    &self,
    options: DESKTOP_SLIDESHOW_OPTIONS,
    slideshowTick: UINT
) -> HRESULT
[src]

pub unsafe fn GetSlideshowOptions(
    &self,
    options: *mut DESKTOP_SLIDESHOW_OPTIONS,
    slideshowTick: *mut UINT
) -> HRESULT
[src]

pub unsafe fn AdvanceSlideshow(
    &self,
    monitorID: LPCWSTR,
    direction: DESKTOP_SLIDESHOW_DIRECTION
) -> HRESULT
[src]

pub unsafe fn GetStatus(&self, state: *mut DESKTOP_SLIDESHOW_STATE) -> HRESULT[src]

pub unsafe fn Enable(&self, enable: BOOL) -> HRESULT[src]

Methods from Deref<Target = IUnknown>

pub unsafe fn QueryInterface(
    &self,
    riid: REFIID,
    ppvObject: *mut *mut c_void
) -> HRESULT
[src]

pub unsafe fn AddRef(&self) -> ULONG[src]

pub unsafe fn Release(&self) -> ULONG[src]

Trait Implementations

impl Deref for IDesktopWallpaper[src]

type Target = IUnknown

The resulting type after dereferencing.

impl Interface for IDesktopWallpaper[src]

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.