pub trait IWiaTransferCallback_Impl: Sized {
    // Required methods
    fn TransferCallback(
        &self,
        lflags: i32,
        pwiatransferparams: *const WiaTransferParams
    ) -> Result<()>;
    fn GetNextStream(
        &self,
        lflags: i32,
        bstritemname: &BSTR,
        bstrfullitemname: &BSTR
    ) -> Result<IStream>;
}

Required Methods§

fn TransferCallback( &self, lflags: i32, pwiatransferparams: *const WiaTransferParams ) -> Result<()>

fn GetNextStream( &self, lflags: i32, bstritemname: &BSTR, bstrfullitemname: &BSTR ) -> Result<IStream>

Object Safety§

This trait is not object safe.

Implementors§