Fix MSVC linker issue

Static globals are not shared between .dll and .exe
the FUID needs to be declared in the GUI as well for
FUnknownPtr<> cast by UUID lookup to work
This commit is contained in:
Robin Gareus 2020-10-09 18:28:53 +02:00
parent 0edd0c2abc
commit e71cc6892e
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -30,6 +30,10 @@
using namespace ARDOUR;
using namespace Steinberg;
#ifdef PLATFORM_WINDOWS
DEF_CLASS_IID (Presonus::IPlugInViewScaling)
#endif
VST3PluginUI::VST3PluginUI (boost::shared_ptr<PluginInsert> pi, boost::shared_ptr<VST3Plugin> vst3)
: PlugUIBase (pi)
, _pi (pi)