Request/send config for VST3 plugins

Using the new Vst3MessageHandler.
This commit is contained in:
Robbert van der Helm
2020-12-04 15:49:32 +01:00
parent 70405e8917
commit 0819e9fda9
6 changed files with 40 additions and 17 deletions
+4 -5
View File
@@ -52,6 +52,10 @@ class Vst3Bridge : public HostBridge {
std::string plugin_dll_path,
std::string endpoint_base_dir);
/**
* Here we'll listen for and handle incoming control messages until the
* sockets get closed.
*/
void run() override;
private:
@@ -79,9 +83,4 @@ class Vst3Bridge : public HostBridge {
* threads to exit.
*/
Vst3Sockets<Win32Thread> sockets;
/**
* Handles control messages host over the `hsot_vst_control` sockets.
*/
Win32Thread control_handler;
};