pub trait IITConvertOperationStatus_Impl: Sized + IITOperationStatus_Impl {
    // Required methods
    unsafe fn GetConversionStatus(
        &self,
        trackName: *mut BSTR,
        progressValue: *mut i32,
        maxProgressValue: *mut i32
    ) -> HRESULT;
    unsafe fn StopConversion(&self) -> HRESULT;
    unsafe fn trackName(&self, trackName: *mut BSTR) -> HRESULT;
    unsafe fn progressValue(&self, progressValue: *mut i32) -> HRESULT;
    unsafe fn maxProgressValue(&self, maxProgressValue: *mut i32) -> HRESULT;
}

Required Methods§

source

unsafe fn GetConversionStatus( &self, trackName: *mut BSTR, progressValue: *mut i32, maxProgressValue: *mut i32 ) -> HRESULT

Returns the current conversion status.

source

unsafe fn StopConversion(&self) -> HRESULT

Stops the current conversion operation.

source

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

Returns the name of the track currently being converted.

source

unsafe fn progressValue(&self, progressValue: *mut i32) -> HRESULT

Returns the current progress value for the track being converted.

source

unsafe fn maxProgressValue(&self, maxProgressValue: *mut i32) -> HRESULT

Returns the maximum progress value for the track being converted.

Implementors§