Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions vst3/vst3entry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ BEGIN_FACTORY_DEF (VENDOR,
kVstAudioEffectClass, // the component category (do not changed this)
stringPluginName, // here the Plug-in name (to be changed)
Vst::kDistributable, // means that component and controller could be distributed on different computers
(PLUGIN_CLASS::isInstrument ? "Instrument" : "Fx"), // Subcategory derived from plugin class
(PLUGIN_CLASS::isInstrument ? Vst::PlugType::kInstrument : Vst::PlugType::kFx),
FULL_VERSION_STR, // Plug-in version (to be changed)
kVstVersionString, // the VST 3 SDK version (do not changed this, use always this define)
VST3Processor<PLUGIN_CLASS>::createInstance) // function pointer called when this component should be instantiated
Expand All @@ -47,4 +47,4 @@ BEGIN_FACTORY_DEF (VENDOR,

//----for others Plug-ins contained in this factory, put like for the first Plug-in different DEF_CLASS2---

END_FACTORY
END_FACTORY
4 changes: 2 additions & 2 deletions vst3/vst3version.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
#else
#define stringFileDescription PLUGIN_NAME" VST3"
#endif
#define stringCompanyName "Steinberg Media Technologies GmbH\0"
#define stringLegalCopyright "Copyright(c) 2022 Steinberg Media Technologies GmbH."
#define stringCompanyName VENDOR
#define stringLegalCopyright "Copyright(c) " VENDOR
#define stringLegalTrademarks "VST is a trademark of Steinberg Media Technologies GmbH"
Loading