mirror of
https://github.com/got-feedBack/feedBack-desktop.git
synced 2026-09-12 20:28:12 +00:00
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:
co-authored by
Claude Fable 5
parent
a5ab8c27c7
commit
668aff98fe
@@ -118,6 +118,13 @@ using slopsmith::addon::SetPan;
|
|||||||
using slopsmith::addon::SetParameter;
|
using slopsmith::addon::SetParameter;
|
||||||
using slopsmith::addon::SetPostGain;
|
using slopsmith::addon::SetPostGain;
|
||||||
using slopsmith::addon::SetRendererBus;
|
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::SetSlotState;
|
||||||
using slopsmith::addon::SetSourceChart;
|
using slopsmith::addon::SetSourceChart;
|
||||||
using slopsmith::addon::SetSourceInputChannel;
|
using slopsmith::addon::SetSourceInputChannel;
|
||||||
|
|||||||
@@ -51,6 +51,13 @@
|
|||||||
"loadPluginList",
|
"loadPluginList",
|
||||||
"loadPreset",
|
"loadPreset",
|
||||||
"loadVST",
|
"loadVST",
|
||||||
|
"mixerCreateChannel",
|
||||||
|
"mixerListChannels",
|
||||||
|
"mixerPushChannel",
|
||||||
|
"mixerReleaseChannel",
|
||||||
|
"mixerSetChannelGain",
|
||||||
|
"mixerSetChannelGroup",
|
||||||
|
"mixerSetChannelMute",
|
||||||
"moveProcessor",
|
"moveProcessor",
|
||||||
"openPluginEditor",
|
"openPluginEditor",
|
||||||
"probeDeviceOptions",
|
"probeDeviceOptions",
|
||||||
|
|||||||
Reference in New Issue
Block a user