Remove non-existent VST2 entry point

Since there isn't any public documentation on VST2, I saw JUCE and a
couple of other plugins and bridges use this, but they all redefined the
symbol to`main`.
This commit is contained in:
Robbert van der Helm
2021-06-29 12:11:05 +02:00
parent c067cd1b40
commit 9b1f3a5f4c
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -392,7 +392,7 @@ impl SearchIndex {
pub fn search(self) -> Result<SearchResults> {
lazy_static! {
static ref VST2_AUTOMATON: AhoCorasick =
AhoCorasick::new_auto_configured(&["VSTPluginMain", "main", "main_plugin"]);
AhoCorasick::new_auto_configured(&["VSTPluginMain", "main"]);
static ref VST3_AUTOMATON: AhoCorasick =
AhoCorasick::new_auto_configured(&["GetPluginFactory"]);
static ref DLL32_AUTOMATON: AhoCorasick =