pub trait IWMIStreamProps_Impl: Sized {
    // Required method
    fn GetProperty(
        &self,
        pszname: &PCWSTR,
        ptype: *mut WMT_ATTR_DATATYPE,
        pvalue: *mut u8,
        pdwsize: *mut u32
    ) -> Result<()>;
}

Required Methods§

fn GetProperty( &self, pszname: &PCWSTR, ptype: *mut WMT_ATTR_DATATYPE, pvalue: *mut u8, pdwsize: *mut u32 ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§