pub trait IWiaAppErrorHandler_Impl: Sized {
    // Required methods
    fn GetWindow(&self) -> Result<HWND>;
    fn ReportStatus(
        &self,
        lflags: i32,
        pwiaitem2: Option<&IWiaItem2>,
        hrstatus: HRESULT,
        lpercentcomplete: i32
    ) -> Result<()>;
}

Required Methods§

fn GetWindow(&self) -> Result<HWND>

fn ReportStatus( &self, lflags: i32, pwiaitem2: Option<&IWiaItem2>, hrstatus: HRESULT, lpercentcomplete: i32 ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§