pub trait IParamValueQueueTrait {
    // Required methods
    unsafe fn getParameterId(&self) -> ParamID;
    unsafe fn getPointCount(&self) -> int32;
    unsafe fn getPoint(
        &self,
        index: int32,
        sampleOffset: *mut int32,
        value: *mut ParamValue
    ) -> tresult;
    unsafe fn addPoint(
        &self,
        sampleOffset: int32,
        value: ParamValue,
        index: *mut int32
    ) -> tresult;
}

Required Methods§

source

unsafe fn getParameterId(&self) -> ParamID

source

unsafe fn getPointCount(&self) -> int32

source

unsafe fn getPoint( &self, index: int32, sampleOffset: *mut int32, value: *mut ParamValue ) -> tresult

source

unsafe fn addPoint( &self, sampleOffset: int32, value: ParamValue, index: *mut int32 ) -> tresult

Implementors§