fix(audio): add missing using-declarations for the mixer bindings

NodeAddon.cpp imports each addon-namespace binding explicitly; the mixer
exports compiled in DeviceBindings but were undeclared at the export
table. Full MSVC build:audio now green; addon-exports snapshot
regenerated (7 new exports).

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
OmikronApex
2026-07-14 22:35:38 +02:00
co-authored by Claude Fable 5
parent a5ab8c27c7
commit 668aff98fe
2 changed files with 14 additions and 0 deletions
+7
View File
@@ -118,6 +118,13 @@ using slopsmith::addon::SetPan;
using slopsmith::addon::SetParameter;
using slopsmith::addon::SetPostGain;
using slopsmith::addon::SetRendererBus;
using slopsmith::addon::MixerCreateChannel;
using slopsmith::addon::MixerReleaseChannel;
using slopsmith::addon::MixerPushChannel;
using slopsmith::addon::MixerSetChannelGain;
using slopsmith::addon::MixerSetChannelMute;
using slopsmith::addon::MixerSetChannelGroup;
using slopsmith::addon::MixerListChannels;
using slopsmith::addon::SetSlotState;
using slopsmith::addon::SetSourceChart;
using slopsmith::addon::SetSourceInputChannel;
+7
View File
@@ -51,6 +51,13 @@
"loadPluginList",
"loadPreset",
"loadVST",
"mixerCreateChannel",
"mixerListChannels",
"mixerPushChannel",
"mixerReleaseChannel",
"mixerSetChannelGain",
"mixerSetChannelGroup",
"mixerSetChannelMute",
"moveProcessor",
"openPluginEditor",
"probeDeviceOptions",