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

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

Implementations

impl IDirectSound3DBuffer[src]

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

pub unsafe fn GetConeAngles(
    &self,
    pdwinsideconeangle: *mut u32,
    pdwoutsideconeangle: *mut u32
) -> HRESULT
[src]

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

pub unsafe fn GetConeOutsideVolume(
    &self,
    plconeoutsidevolume: *mut i32
) -> HRESULT
[src]

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

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

pub unsafe fn GetMode(&self, pdwmode: *mut u32) -> HRESULT[src]

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

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

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

pub unsafe fn SetConeAngles(
    &self,
    dwinsideconeangle: u32,
    dwoutsideconeangle: u32,
    dwapply: u32
) -> HRESULT
[src]

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

pub unsafe fn SetConeOutsideVolume(
    &self,
    lconeoutsidevolume: i32,
    dwapply: u32
) -> HRESULT
[src]

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

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

pub unsafe fn SetMode(&self, dwmode: u32, dwapply: u32) -> HRESULT[src]

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

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

Trait Implementations

impl Clone for IDirectSound3DBuffer[src]

impl Debug for IDirectSound3DBuffer[src]

impl Eq for IDirectSound3DBuffer[src]

impl Interface for IDirectSound3DBuffer[src]

type Vtable = IDirectSound3DBuffer_abi

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

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

impl PartialEq<IDirectSound3DBuffer> for IDirectSound3DBuffer[src]

impl StructuralEq for IDirectSound3DBuffer[src]

impl StructuralPartialEq for IDirectSound3DBuffer[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.