pub trait IStreamBufferRecordControl_Impl: Sized {
    // Required methods
    fn Start(&self, prtstart: *mut i64) -> Result<()>;
    fn Stop(&self, rtstop: i64) -> Result<()>;
    fn GetRecordingStatus(
        &self,
        phresult: *mut HRESULT,
        pbstarted: *mut BOOL,
        pbstopped: *mut BOOL
    ) -> Result<()>;
}

Required Methods§

fn Start(&self, prtstart: *mut i64) -> Result<()>

fn Stop(&self, rtstop: i64) -> Result<()>

fn GetRecordingStatus( &self, phresult: *mut HRESULT, pbstarted: *mut BOOL, pbstopped: *mut BOOL ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§