#[repr(C)]pub struct ISpellChecker2 {
pub lpVtbl: *const ISpellChecker2Vtbl,
}
Fields§
§lpVtbl: *const ISpellChecker2Vtbl
Implementations§
Methods from Deref<Target = ISpellChecker>§
pub unsafe fn get_LanguageTag(&self, value: *mut LPWSTR) -> HRESULT
pub unsafe fn Check( &self, text: LPCWSTR, value: *mut *mut IEnumSpellingError, ) -> HRESULT
pub unsafe fn Suggest( &self, word: LPCWSTR, value: *mut *mut IEnumString, ) -> HRESULT
pub unsafe fn Add(&self, word: LPCWSTR) -> HRESULT
pub unsafe fn Ignore(&self, word: LPCWSTR) -> HRESULT
pub unsafe fn AutoCorrect(&self, from: LPCWSTR, to: LPCWSTR) -> HRESULT
pub unsafe fn GetOptionValue( &self, optionId: LPCWSTR, value: *mut BYTE, ) -> HRESULT
pub unsafe fn Get_OptionIds(&self, value: *mut *mut IEnumString) -> HRESULT
pub unsafe fn Get_Id(&self, value: *mut LPWSTR) -> HRESULT
pub unsafe fn Get_LocalizedName(&self, value: *mut LPWSTR) -> HRESULT
pub unsafe fn add_SpellCheckerChanged( &self, handler: *const ISpellCheckerChangedEventHandler, eventCookie: *mut DWORD, ) -> HRESULT
pub unsafe fn remove_SpellCheckerChanged(&self, eventCookie: DWORD) -> HRESULT
pub unsafe fn GetOptionDescription( &self, optionId: LPCWSTR, value: *mut *mut IOptionDescription, ) -> HRESULT
pub unsafe fn ComprehensiveCheck( &self, text: LPCWSTR, value: *mut *mut IEnumSpellingError, ) -> HRESULT
Trait Implementations§
Source§impl Deref for ISpellChecker2
impl Deref for ISpellChecker2
Source§type Target = ISpellChecker
type Target = ISpellChecker
The resulting type after dereferencing.
Source§fn deref(&self) -> &ISpellChecker
fn deref(&self) -> &ISpellChecker
Dereferences the value.
Auto Trait Implementations§
impl Freeze for ISpellChecker2
impl RefUnwindSafe for ISpellChecker2
impl !Send for ISpellChecker2
impl !Sync for ISpellChecker2
impl Unpin for ISpellChecker2
impl UnwindSafe for ISpellChecker2
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more