pub trait IImePlugInDictDictionaryList_Impl: Sized {
    // Required methods
    fn GetDictionariesInUse(
        &self,
        prgdictionaryguid: *mut *mut SAFEARRAY,
        prgdatecreated: *mut *mut SAFEARRAY,
        prgfencrypted: *mut *mut SAFEARRAY,
    ) -> Result<()>;
    fn DeleteDictionary(&self, bstrdictionaryguid: &BSTR) -> Result<()>;
}

Required Methods§

fn GetDictionariesInUse( &self, prgdictionaryguid: *mut *mut SAFEARRAY, prgdatecreated: *mut *mut SAFEARRAY, prgfencrypted: *mut *mut SAFEARRAY, ) -> Result<()>

fn DeleteDictionary(&self, bstrdictionaryguid: &BSTR) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§