pub trait IWMWriterAdvanced2_Impl: Sized + IWMWriterAdvanced_Impl {
    // Required methods
    fn GetInputSetting(
        &self,
        dwinputnum: u32,
        pszname: &PCWSTR,
        ptype: *mut WMT_ATTR_DATATYPE,
        pvalue: *mut u8,
        pcblength: *mut u16
    ) -> Result<()>;
    fn SetInputSetting(
        &self,
        dwinputnum: u32,
        pszname: &PCWSTR,
        type: WMT_ATTR_DATATYPE,
        pvalue: *const u8,
        cblength: u16
    ) -> Result<()>;
}

Required Methods§

fn GetInputSetting( &self, dwinputnum: u32, pszname: &PCWSTR, ptype: *mut WMT_ATTR_DATATYPE, pvalue: *mut u8, pcblength: *mut u16 ) -> Result<()>

fn SetInputSetting( &self, dwinputnum: u32, pszname: &PCWSTR, type: WMT_ATTR_DATATYPE, pvalue: *const u8, cblength: u16 ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§