10 lines
298 B
C++
10 lines
298 B
C++
#include "main_window.h"
|
|
|
|
#include "audio/plugin_host/plugin_host.h"
|
|
#include "audio/plugin_host/plugin_host_manager.h"
|
|
|
|
void main_window::on_click() {
|
|
plugin_host* host = get_plugin_host_manager()->create_instrument_plugin_host("F:\\VST\\VST64\\Serum_x64.dll");
|
|
host->try_open_editor();
|
|
}
|