internal AudioEndpointVolumeStepInformation(IAudioEndpointVolume parent)
 {
     Marshal.ThrowExceptionForHR(parent.GetVolumeStepInfo(out _Step, out _StepCount));
 }
 internal AudioEndpointVolumeStepInformation(IAudioEndpointVolume parent)
 {
     Marshal.ThrowExceptionForHR(parent.GetVolumeStepInfo(out step, out stepCount));
 }
Exemple #3
0
 internal AudioEndpointVolumeStepInformation(IAudioEndpointVolume parent)
 {
     parent.GetVolumeStepInfo(out step, out stepCount);
 }