pub trait IPhotoAcquireOptionsDialog_Impl: Sized {
    // Required methods
    fn Initialize(&self, pszregistryroot: &PCWSTR) -> Result<()>;
    fn Create(&self, hwndparent: HWND) -> Result<HWND>;
    fn Destroy(&self) -> Result<()>;
    fn DoModal(&self, hwndparent: HWND, ppnreturncode: *mut isize) -> Result<()>;
    fn SaveData(&self) -> Result<()>;
}

Required Methods§

fn Initialize(&self, pszregistryroot: &PCWSTR) -> Result<()>

fn Create(&self, hwndparent: HWND) -> Result<HWND>

fn Destroy(&self) -> Result<()>

fn DoModal(&self, hwndparent: HWND, ppnreturncode: *mut isize) -> Result<()>

fn SaveData(&self) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§