mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-08 20:40:11 +02:00
Merge branch 'master' into feature/vst3
This commit is contained in:
@@ -36,7 +36,11 @@
|
||||
* plugin host and this group plugin host will function identically on both the
|
||||
* plugin and the Wine VST host side.
|
||||
*/
|
||||
int __attribute__((visibility("default"))) main(int argc, char* argv[]) {
|
||||
int __attribute__((visibility("default")))
|
||||
#ifdef WINE_USE_CDECL
|
||||
__cdecl
|
||||
#endif
|
||||
main(int argc, char* argv[]) {
|
||||
set_realtime_priority();
|
||||
|
||||
// Instead of directly hosting a plugin, this process will receive a UNIX
|
||||
|
||||
@@ -32,7 +32,11 @@
|
||||
* plugin plugin, and then connect back to the `libyabridge-{vst2,vst3}.so`
|
||||
* instance that spawned this over the socket.
|
||||
*/
|
||||
int __attribute__((visibility("default"))) main(int argc, char* argv[]) {
|
||||
int __attribute__((visibility("default")))
|
||||
#ifdef WINE_USE_CDECL
|
||||
__cdecl
|
||||
#endif
|
||||
main(int argc, char* argv[]) {
|
||||
set_realtime_priority();
|
||||
|
||||
// We pass plugin format, the name of the VST2 plugin .dll file or VST3
|
||||
|
||||
Reference in New Issue
Block a user