commit 106a8575205d6f0d772be64fd3880576146c8b1f
parent d620bd76f1a6b69de40e4eeab97b3e1164fbb73b
Author: falkTX <falktx@falktx.com>
Date: Sat, 19 Nov 2022 22:25:41 +0000
DPF Mutex implementation is TODO on MSVC
Signed-off-by: falkTX <falktx@falktx.com>
Diffstat:
1 file changed, 5 insertions(+), 0 deletions(-)
diff --git a/distrho/extra/Mutex.hpp b/distrho/extra/Mutex.hpp
@@ -28,7 +28,12 @@
#endif
// FIXME make Mutex stop relying on pthread
+#ifdef _MSC_VER
+#define DISTRHO_OS_WINDOWS__TODO
+#warning DPF Mutex implementation is TODO on MSVC
+#else
#include <pthread.h>
+#endif
START_NAMESPACE_DISTRHO