[][src]Struct winapi::um::endpointvolume::IAudioEndpointVolumeEx

#[repr(C)]
pub struct IAudioEndpointVolumeEx {
    pub lpVtbl: *const IAudioEndpointVolumeExVtbl,
}

Fields

lpVtbl: *const IAudioEndpointVolumeExVtbl

Methods

impl IAudioEndpointVolumeEx[src]

pub unsafe fn GetVolumeRangeChannel(
    &self,
    iChannel: UINT,
    pflVolumeMindB: *mut c_float,
    pflVolumeMaxdB: *mut c_float,
    pflVolumeIncrementdB: *mut c_float
) -> HRESULT
[src]

Methods from Deref<Target = IAudioEndpointVolume>

pub unsafe fn RegisterControlChangeNotify(
    &self,
    pNotify: *mut IAudioEndpointVolumeCallback
) -> HRESULT
[src]

pub unsafe fn UnregisterControlChangeNotify(
    &self,
    pNotify: *mut IAudioEndpointVolumeCallback
) -> HRESULT
[src]

pub unsafe fn GetChannelCount(&self, pnChannelCount: *mut UINT) -> HRESULT[src]

pub unsafe fn SetMasterVolumeLevel(
    &self,
    fLevelDB: c_float,
    pguidEventContext: LPCGUID
) -> HRESULT
[src]

pub unsafe fn SetMasterVolumeLevelScalar(
    &self,
    fLevel: c_float,
    pguidEventContext: LPCGUID
) -> HRESULT
[src]

pub unsafe fn GetMasterVolumeLevel(&self, pfLevelDB: *mut c_float) -> HRESULT[src]

pub unsafe fn GetMasterVolumeLevelScalar(
    &self,
    pfLevel: *mut c_float
) -> HRESULT
[src]

pub unsafe fn SetChannelVolumeLevel(
    &self,
    nChannel: UINT,
    fLevelDB: c_float,
    pguidEventContext: LPCGUID
) -> HRESULT
[src]

pub unsafe fn SetChannelVolumeLevelScalar(
    &self,
    nChannel: UINT,
    fLevel: c_float,
    pguidEventContext: LPCGUID
) -> HRESULT
[src]

pub unsafe fn GetChannelVolumeLevel(
    &self,
    nChannel: UINT,
    pfLevelDB: *mut c_float
) -> HRESULT
[src]

pub unsafe fn GetChannelVolumeLevelScalar(
    &self,
    nChannel: UINT,
    pfLevel: *mut c_float
) -> HRESULT
[src]

pub unsafe fn SetMute(&self, bMute: BOOL, pguidEventContext: LPCGUID) -> HRESULT[src]

pub unsafe fn GetMute(&self, pbMute: *mut BOOL) -> HRESULT[src]

pub unsafe fn GetVolumeStepInfo(
    &self,
    pnStep: *mut UINT,
    pnStepCount: *mut UINT
) -> HRESULT
[src]

pub unsafe fn VolumeStepUp(&self, pguidEventContext: LPCGUID) -> HRESULT[src]

pub unsafe fn VolumeStepDown(&self, pguidEventContext: LPCGUID) -> HRESULT[src]

pub unsafe fn QueryHardwareSupport(
    &self,
    pdwHardwareSupportMask: *mut DWORD
) -> HRESULT
[src]

pub unsafe fn GetVolumeRange(
    &self,
    pflVolumeMindB: *mut c_float,
    pflVolumeMaxdB: *mut c_float,
    pflVolumeIncrementdB: *mut c_float
) -> HRESULT
[src]

Trait Implementations

impl Interface for IAudioEndpointVolumeEx[src]

impl Deref for IAudioEndpointVolumeEx[src]

type Target = IAudioEndpointVolume

The resulting type after dereferencing.

Auto Trait Implementations

Blanket Implementations

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> Into<U> for T where
    U: From<T>, 
[src]

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

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.

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

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

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