mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-09 20:29:10 +02:00
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:
@@ -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 =
|
||||
|
||||
Reference in New Issue
Block a user