From 29332269c905fd5f2ce8f93423a234d939a10e7d Mon Sep 17 00:00:00 2001 From: Volker Fischer Date: Thu, 22 Mar 2018 20:50:05 +0000 Subject: [PATCH] support native Jack support under Windows using the CONFIG switch "jackonwindows" --- src/client.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/client.h b/src/client.h index 5de8b367..83806d4e 100755 --- a/src/client.h +++ b/src/client.h @@ -43,7 +43,7 @@ #ifdef LLCON_VST_PLUGIN # include "vstsound.h" #else -# ifdef _WIN32 +# if defined ( _WIN32 ) && !defined ( JACK_REPLACES_ASIO ) # include "../windows/sound.h" # else # if ( defined ( __APPLE__ ) || defined ( __MACOSX ) ) && !defined ( JACK_REPLACES_COREAUDIO ) @@ -53,9 +53,11 @@ # include "../android/sound.h" # else # include "../linux/sound.h" -# include +# ifndef JACK_REPLACES_ASIO // these headers are not available in Windows OS +# include +# include +# endif # include -# include # endif # endif # endif