From 6dccb86ba6fbf4e5eb35fa828f29d2446b8089b1 Mon Sep 17 00:00:00 2001 From: Diego Szychowski Date: Sat, 31 Aug 2024 10:09:57 -0300 Subject: [PATCH] fix: VTable IAudioMeterInformationVtbl struct order Based on pR: https://github.com/moutend/go-wca/pull/19 --- pkg/wca/IAudioMeterInformation.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/wca/IAudioMeterInformation.go b/pkg/wca/IAudioMeterInformation.go index dd57231..901e477 100644 --- a/pkg/wca/IAudioMeterInformation.go +++ b/pkg/wca/IAudioMeterInformation.go @@ -13,8 +13,8 @@ type IAudioMeterInformation struct { type IAudioMeterInformationVtbl struct { ole.IUnknownVtbl GetPeakValue uintptr - GetChannelsPeakValues uintptr GetMeteringChannelCount uintptr + GetChannelsPeakValues uintptr QueryHardwareSupport uintptr }