ahk2_lib icon indicating copy to clipboard operation
ahk2_lib copied to clipboard

Avoid redundant call

Open 34730 opened this issue 5 months ago • 0 comments

Example:

a := IMMDeviceEnumerator().GetDefaultAudioEndpoint().Activate(IAudioMeterInformation)
if 4 <= c := a.GetMeteringChannelCount() {
    p := a.GetChannelsPeakValues(c)
} else {
    return
}

34730 avatar Sep 24 '24 17:09 34730