5 #include <Vst/vst-compat.hpp>
13 using PluginEntryProc = AEffect* (*)(audioMasterCallback audioMaster);
20 Module(std::string fileName);
22 PluginEntryProc getMain();
27 #if defined(__APPLE__)
28 static const constexpr
auto default_path =
"/Library/Audio/Plug-Ins/VST";
29 static const constexpr
auto default_filter =
"*.vst *.dylib *.component";
30 #elif defined(__linux__)
31 static const auto default_path = QStringLiteral(
"/usr/lib/vst");
32 static const constexpr
auto default_filter =
"*.so";
34 static const constexpr
auto default_path =
"c:\\vst";
35 static const constexpr
auto default_filter =
"*.dll";
37 static const constexpr
auto default_path =
"";
38 static const constexpr
auto default_filter =
"";
Definition: Loader.hpp:16