pub trait IMLangStringBufW_Impl: Sized {
    // Required methods
    fn GetStatus(&self, plflags: *mut i32, pcchbuf: *mut i32) -> Result<()>;
    fn LockBuf(
        &self,
        cchoffset: i32,
        cchmaxlock: i32,
        ppszbuf: *mut *mut u16,
        pcchbuf: *mut i32
    ) -> Result<()>;
    fn UnlockBuf(
        &self,
        pszbuf: &PCWSTR,
        cchoffset: i32,
        cchwrite: i32
    ) -> Result<()>;
    fn Insert(
        &self,
        cchoffset: i32,
        cchmaxinsert: i32,
        pcchactual: *mut i32
    ) -> Result<()>;
    fn Delete(&self, cchoffset: i32, cchdelete: i32) -> Result<()>;
}

Required Methods§

fn GetStatus(&self, plflags: *mut i32, pcchbuf: *mut i32) -> Result<()>

fn LockBuf( &self, cchoffset: i32, cchmaxlock: i32, ppszbuf: *mut *mut u16, pcchbuf: *mut i32 ) -> Result<()>

fn UnlockBuf( &self, pszbuf: &PCWSTR, cchoffset: i32, cchwrite: i32 ) -> Result<()>

fn Insert( &self, cchoffset: i32, cchmaxinsert: i32, pcchactual: *mut i32 ) -> Result<()>

fn Delete(&self, cchoffset: i32, cchdelete: i32) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§