Move wine-bridge.h -> bridges/vst2.h

This way we can structure the group handling and a potential future VST3
bridge in the same way.
This commit is contained in:
Robbert van der Helm
2020-05-18 15:13:13 +02:00
parent b8028b8e13
commit 53acb1f78a
8 changed files with 37 additions and 37 deletions
+2 -2
View File
@@ -20,7 +20,7 @@
#include <src/common/config/config.h>
#include <src/common/config/version.h>
#include "wine-bridge.h"
#include "bridges/vst2.h"
/**
* This is the default VST host application. It will load the specified VST2
@@ -55,7 +55,7 @@ int __cdecl main(int argc, char* argv[]) {
#endif
<< std::endl;
try {
WineBridge bridge(plugin_dll_path, socket_endpoint_path);
Vst2Bridge bridge(plugin_dll_path, socket_endpoint_path);
std::cerr << "Finished initializing '" << plugin_dll_path << "'"
<< std::endl;