pub trait IAudioOutputEndpointRT_Impl: Sized {
    // Required methods
    fn GetOutputDataPointer(
        &self,
        u32framecount: u32,
        paetimestamp: *const AE_CURRENT_POSITION,
    ) -> usize;
    fn ReleaseOutputDataPointer(
        &self,
        pconnectionproperty: *const APO_CONNECTION_PROPERTY,
    );
    fn PulseEndpoint(&self);
}

Required Methods§

fn GetOutputDataPointer( &self, u32framecount: u32, paetimestamp: *const AE_CURRENT_POSITION, ) -> usize

fn ReleaseOutputDataPointer( &self, pconnectionproperty: *const APO_CONNECTION_PROPERTY, )

fn PulseEndpoint(&self)

Object Safety§

This trait is not object safe.

Implementors§