Struct audio_device_windows_sys::Windows::Win32::Audio::IDirectSound3DListener[][src]

#[repr(transparent)]pub struct IDirectSound3DListener(_);

Implementations

impl IDirectSound3DListener[src]

pub unsafe fn GetAllParameters(&self, plistener: *mut DS3DLISTENER) -> HRESULT[src]

pub unsafe fn GetDistanceFactor(&self, pfldistancefactor: *mut f32) -> HRESULT[src]

pub unsafe fn GetDopplerFactor(&self, pfldopplerfactor: *mut f32) -> HRESULT[src]

pub unsafe fn GetOrientation(
    &self,
    pvorientfront: *mut D3DVECTOR,
    pvorienttop: *mut D3DVECTOR
) -> HRESULT
[src]

pub unsafe fn GetPosition(&self, pvposition: *mut D3DVECTOR) -> HRESULT[src]

pub unsafe fn GetRolloffFactor(&self, pflrollofffactor: *mut f32) -> HRESULT[src]

pub unsafe fn GetVelocity(&self, pvvelocity: *mut D3DVECTOR) -> HRESULT[src]

pub unsafe fn SetAllParameters(
    &self,
    pclistener: *mut DS3DLISTENER,
    dwapply: u32
) -> HRESULT
[src]

pub unsafe fn SetDistanceFactor(
    &self,
    fldistancefactor: f32,
    dwapply: u32
) -> HRESULT
[src]

pub unsafe fn SetDopplerFactor(
    &self,
    fldopplerfactor: f32,
    dwapply: u32
) -> HRESULT
[src]

pub unsafe fn SetOrientation(
    &self,
    xfront: f32,
    yfront: f32,
    zfront: f32,
    xtop: f32,
    ytop: f32,
    ztop: f32,
    dwapply: u32
) -> HRESULT
[src]

pub unsafe fn SetPosition(
    &self,
    x: f32,
    y: f32,
    z: f32,
    dwapply: u32
) -> HRESULT
[src]

pub unsafe fn SetRolloffFactor(
    &self,
    flrollofffactor: f32,
    dwapply: u32
) -> HRESULT
[src]

pub unsafe fn SetVelocity(
    &self,
    x: f32,
    y: f32,
    z: f32,
    dwapply: u32
) -> HRESULT
[src]

pub unsafe fn CommitDeferredSettings(&self) -> HRESULT[src]

Trait Implementations

impl Clone for IDirectSound3DListener[src]

impl Debug for IDirectSound3DListener[src]

impl Eq for IDirectSound3DListener[src]

impl Interface for IDirectSound3DListener[src]

type Vtable = IDirectSound3DListener_abi

impl<'a> IntoParam<'a, IUnknown> for IDirectSound3DListener[src]

impl<'a> IntoParam<'a, IUnknown> for &'a IDirectSound3DListener[src]

impl PartialEq<IDirectSound3DListener> for IDirectSound3DListener[src]

impl StructuralEq for IDirectSound3DListener[src]

impl StructuralPartialEq for IDirectSound3DListener[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Abi for T where
    T: Interface
[src]

type Abi = *mut c_void

The abi representation of the implementing type. Read more

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<'a, T> IntoParam<'a, T> for T where
    T: Abi
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.