pub trait IWMDMStorage2_Impl: Sized + IWMDMStorage_Impl {
    // Required methods
    fn GetStorage(&self, pszstoragename: &PCWSTR) -> Result<IWMDMStorage>;
    fn SetAttributes2(
        &self,
        dwattributes: u32,
        dwattributesex: u32,
        pformat: *const WAVEFORMATEX,
        pvideoformat: *const VIDEOINFOHEADER
    ) -> Result<()>;
    fn GetAttributes2(
        &self,
        pdwattributes: *mut u32,
        pdwattributesex: *mut u32,
        paudioformat: *mut WAVEFORMATEX,
        pvideoformat: *mut VIDEOINFOHEADER
    ) -> Result<()>;
}

Required Methods§

fn GetStorage(&self, pszstoragename: &PCWSTR) -> Result<IWMDMStorage>

fn SetAttributes2( &self, dwattributes: u32, dwattributesex: u32, pformat: *const WAVEFORMATEX, pvideoformat: *const VIDEOINFOHEADER ) -> Result<()>

fn GetAttributes2( &self, pdwattributes: *mut u32, pdwattributesex: *mut u32, paudioformat: *mut WAVEFORMATEX, pvideoformat: *mut VIDEOINFOHEADER ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§