pub trait IPMExtensionInfo_Impl: Sized {
    // Required methods
    fn SupplierPID(&self) -> Result<GUID>;
    fn SupplierTaskID(&self, psuppliertid: *mut BSTR) -> Result<()>;
    fn Title(&self, ptitle: *mut BSTR) -> Result<()>;
    fn IconPath(&self, piconpath: *mut BSTR) -> Result<()>;
    fn ExtraFile(&self, pfilepath: *mut BSTR) -> Result<()>;
    fn get_InvocationInfo(
        &self,
        pimageurn: *mut BSTR,
        pparameters: *mut BSTR
    ) -> Result<()>;
}

Required Methods§

fn SupplierPID(&self) -> Result<GUID>

fn SupplierTaskID(&self, psuppliertid: *mut BSTR) -> Result<()>

fn Title(&self, ptitle: *mut BSTR) -> Result<()>

fn IconPath(&self, piconpath: *mut BSTR) -> Result<()>

fn ExtraFile(&self, pfilepath: *mut BSTR) -> Result<()>

fn get_InvocationInfo( &self, pimageurn: *mut BSTR, pparameters: *mut BSTR ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§