pub trait IStreamBufferRecComp_Impl: Sized {
    // Required methods
    fn Initialize(
        &self,
        psztargetfilename: &PCWSTR,
        pszsbrecprofileref: &PCWSTR
    ) -> Result<()>;
    fn Append(&self, pszsbrecording: &PCWSTR) -> Result<()>;
    fn AppendEx(
        &self,
        pszsbrecording: &PCWSTR,
        rtstart: i64,
        rtstop: i64
    ) -> Result<()>;
    fn GetCurrentLength(&self) -> Result<u32>;
    fn Close(&self) -> Result<()>;
    fn Cancel(&self) -> Result<()>;
}

Required Methods§

fn Initialize( &self, psztargetfilename: &PCWSTR, pszsbrecprofileref: &PCWSTR ) -> Result<()>

fn Append(&self, pszsbrecording: &PCWSTR) -> Result<()>

fn AppendEx( &self, pszsbrecording: &PCWSTR, rtstart: i64, rtstop: i64 ) -> Result<()>

fn GetCurrentLength(&self) -> Result<u32>

fn Close(&self) -> Result<()>

fn Cancel(&self) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§