pub trait IITEncoder_Impl: Sized + IDispatch_Impl {
    // Required methods
    unsafe fn Name(&self, Name: *mut BSTR) -> HRESULT;
    unsafe fn Format(&self, Format: *mut BSTR) -> HRESULT;
}

Required Methods§

source

unsafe fn Name(&self, Name: *mut BSTR) -> HRESULT

The name of the the encoder.

source

unsafe fn Format(&self, Format: *mut BSTR) -> HRESULT

The data format created by the encoder.

Implementors§