From 5f6dacd2acd612c3ec7d069c853f808cfe9e3d00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Goran=20Meki=C4=87?= Date: Sun, 21 May 2017 11:28:12 +0200 Subject: Add OSS MIDI input --- drumgizmo/enginefactory.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'drumgizmo/enginefactory.h') diff --git a/drumgizmo/enginefactory.h b/drumgizmo/enginefactory.h index 2a1457e..327c326 100644 --- a/drumgizmo/enginefactory.h +++ b/drumgizmo/enginefactory.h @@ -53,6 +53,10 @@ #include "input/jackmidi.h" #endif +#ifdef HAVE_INPUT_OSS +#include "input/ossmidi.h" +#endif + #ifdef HAVE_OUTPUT_DUMMY #include "output/outputdummy.h" #endif -- cgit v1.2.3 From a6343737453b34335a7a5494c8ac6b393d15604c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Goran=20Meki=C4=87?= Date: Fri, 29 Dec 2017 23:36:55 +0100 Subject: Open midi device in non-blocking mode --- drumgizmo/enginefactory.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'drumgizmo/enginefactory.h') diff --git a/drumgizmo/enginefactory.h b/drumgizmo/enginefactory.h index 327c326..0b37c6e 100644 --- a/drumgizmo/enginefactory.h +++ b/drumgizmo/enginefactory.h @@ -78,6 +78,11 @@ #endif +#ifdef HAVE_INPUT_OSSMIDI +#include "input/ossmidi.h" +#endif + + //! Factory for various input- and output engines class EngineFactory { -- cgit v1.2.3