pub trait IUserDictionariesRegistrar_Impl: Sized {
    // Required methods
    fn RegisterUserDictionary(
        &self,
        dictionarypath: &PCWSTR,
        languagetag: &PCWSTR
    ) -> Result<()>;
    fn UnregisterUserDictionary(
        &self,
        dictionarypath: &PCWSTR,
        languagetag: &PCWSTR
    ) -> Result<()>;
}

Required Methods§

fn RegisterUserDictionary( &self, dictionarypath: &PCWSTR, languagetag: &PCWSTR ) -> Result<()>

fn UnregisterUserDictionary( &self, dictionarypath: &PCWSTR, languagetag: &PCWSTR ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§