pub trait IPrintDialogCallback_Impl: Sized {
    // Required methods
    fn InitDone(&self) -> Result<()>;
    fn SelectionChange(&self) -> Result<()>;
    fn HandleMessage(
        &self,
        hdlg: HWND,
        umsg: u32,
        wparam: WPARAM,
        lparam: LPARAM,
        presult: *mut LRESULT
    ) -> Result<()>;
}

Required Methods§

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

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

fn HandleMessage( &self, hdlg: HWND, umsg: u32, wparam: WPARAM, lparam: LPARAM, presult: *mut LRESULT ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§