Enhanced version of Cockos' iPlug - A simple-to-use C++ framework for developing cross platform audio plugins and targeting multiple plugin APIs with the same code. VST / VST3 / Audiounit / RTAS / AAX (Native) formats supported. NOTE: THIS IS OBSOLETE, PLEASE SEE IPLUG2:
Parameter* param = new RangeParameter( STR16(p->GetNameForHost()),
the macro STR16 produces a bug, because it can't be applied this way. I see that in the last commit, this has been fixed. But I cannot use this last commit, because this breaks all compilation of my entire project, that used previous versions of IPlugVST3.cpp.
How to solve just this STR16 issue without modifying anything else in IPlugVST3.cpp?
Closing this issue because it was specific to a particular VSD3 STK release this will be fixed and the new version of I plug will be compatible with the latest VSD three
In this line,
the macro
STR16
produces a bug, because it can't be applied this way. I see that in the last commit, this has been fixed. But I cannot use this last commit, because this breaks all compilation of my entire project, that used previous versions ofIPlugVST3.cpp
.How to solve just this STR16 issue without modifying anything else in
IPlugVST3.cpp
?