pub trait IPMExtensionFileExtensionInfo_Impl: Sized {
    // Required methods
    fn Name(&self, pname: *mut BSTR) -> Result<()>;
    fn DisplayName(&self, pdisplayname: *mut BSTR) -> Result<()>;
    fn get_Logo(&self, logosize: PM_LOGO_SIZE, plogo: *mut BSTR) -> Result<()>;
    fn get_ContentType(
        &self,
        filetype: &BSTR,
        pcontenttype: *mut BSTR
    ) -> Result<()>;
    fn get_FileType(
        &self,
        contenttype: &BSTR,
        pfiletype: *mut BSTR
    ) -> Result<()>;
    fn get_InvocationInfo(
        &self,
        pimageurn: *mut BSTR,
        pparameters: *mut BSTR
    ) -> Result<()>;
    fn get_AllFileTypes(
        &self,
        pcbtypes: *mut u32,
        pptypes: *mut *mut BSTR
    ) -> Result<()>;
}

Required Methods§

fn Name(&self, pname: *mut BSTR) -> Result<()>

fn DisplayName(&self, pdisplayname: *mut BSTR) -> Result<()>

fn get_ContentType( &self, filetype: &BSTR, pcontenttype: *mut BSTR ) -> Result<()>

fn get_FileType(&self, contenttype: &BSTR, pfiletype: *mut BSTR) -> Result<()>

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

fn get_AllFileTypes( &self, pcbtypes: *mut u32, pptypes: *mut *mut BSTR ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§