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