pub trait IAMExtendedSeeking_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn ExSeekCapabilities(&self, pexcapabilities: *mut i32) -> Result<()>;
    fn MarkerCount(&self, pmarkercount: *mut i32) -> Result<()>;
    fn CurrentMarker(&self, pcurrentmarker: *mut i32) -> Result<()>;
    fn GetMarkerTime(&self, markernum: i32, pmarkertime: *mut f64) -> Result<()>;
    fn GetMarkerName(
        &self,
        markernum: i32,
        pbstrmarkername: *mut BSTR
    ) -> Result<()>;
    fn SetPlaybackSpeed(&self, speed: f64) -> Result<()>;
    fn PlaybackSpeed(&self, pspeed: *mut f64) -> Result<()>;
}

Required Methods§

fn ExSeekCapabilities(&self, pexcapabilities: *mut i32) -> Result<()>

fn MarkerCount(&self, pmarkercount: *mut i32) -> Result<()>

fn CurrentMarker(&self, pcurrentmarker: *mut i32) -> Result<()>

fn GetMarkerTime(&self, markernum: i32, pmarkertime: *mut f64) -> Result<()>

fn GetMarkerName( &self, markernum: i32, pbstrmarkername: *mut BSTR ) -> Result<()>

fn SetPlaybackSpeed(&self, speed: f64) -> Result<()>

fn PlaybackSpeed(&self, pspeed: *mut f64) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§