删除无用函数

This commit is contained in:
2024-05-21 01:46:32 +08:00
parent 983a990a51
commit 2f5814a314
2 changed files with 0 additions and 8 deletions

View File

@@ -7,9 +7,3 @@ 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();
}
void* main_window::create_vst_window() {
}
void main_window::destroy_vst_window(void* handle) {
}

View File

@@ -18,8 +18,6 @@ public:
}
protected:
void on_click();
void* create_vst_window();
void destroy_vst_window(void* handle);
private:
Gtk::Box box_;
Gtk::Button button_;