pub trait IStreamBufferSink_Impl: Sized {
    // Required methods
    fn LockProfile(&self, pszstreambufferfilename: &PCWSTR) -> Result<()>;
    fn CreateRecorder(
        &self,
        pszfilename: &PCWSTR,
        dwrecordtype: u32
    ) -> Result<IUnknown>;
    fn IsProfileLocked(&self) -> Result<()>;
}

Required Methods§

fn LockProfile(&self, pszstreambufferfilename: &PCWSTR) -> Result<()>

fn CreateRecorder( &self, pszfilename: &PCWSTR, dwrecordtype: u32 ) -> Result<IUnknown>

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

Object Safety§

This trait is not object safe.

Implementors§