Add the base for GUI handling

Still need to embed the opened window into the window provided by the
host.
This commit is contained in:
Robbert van der Helm
2020-03-17 01:50:50 +01:00
parent 44a953c2d2
commit e7e1b26455
6 changed files with 91 additions and 27 deletions
+3
View File
@@ -31,6 +31,7 @@
#include <thread>
#include "../common/logging.h"
#include "win32-editor.h"
/**
* This handles the communication between the Linux native VST plugin and the
@@ -128,4 +129,6 @@ class PluginBridge {
* `processReplacing` calls.
*/
std::vector<uint8_t> process_buffer;
Win32Editor editor;
};