diff options
author | Vitaly Novichkov <admin@wohlnet.ru> | 2018-06-21 05:01:50 +0300 |
---|---|---|
committer | Vitaly Novichkov <admin@wohlnet.ru> | 2018-06-21 05:01:50 +0300 |
commit | f20f618327deba5091a384eb749fd4b4f7c10a2f (patch) | |
tree | c1af15b9260aadce457732b3fd2e2ab39aaa469b /src/adlmidi_sequencer.cpp | |
parent | 96fef8f4aa43bc60b54e765da20d465a6830e0c7 (diff) | |
download | libADLMIDI-f20f618327deba5091a384eb749fd4b4f7c10a2f.tar.gz libADLMIDI-f20f618327deba5091a384eb749fd4b4f7c10a2f.tar.bz2 libADLMIDI-f20f618327deba5091a384eb749fd4b4f7c10a2f.zip |
Fixed build of MIDI sequencer out of pre-included private ADLMIDI's header
Diffstat (limited to 'src/adlmidi_sequencer.cpp')
-rw-r--r-- | src/adlmidi_sequencer.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/adlmidi_sequencer.cpp b/src/adlmidi_sequencer.cpp index 8bc3569..fcc1380 100644 --- a/src/adlmidi_sequencer.cpp +++ b/src/adlmidi_sequencer.cpp @@ -23,11 +23,12 @@ #ifndef ADLMIDI_DISABLE_MIDI_SEQUENCER -#include "adlmidi_private.hpp" - +// Rename class to avoid ABI collisions +#define BW_MidiSequencer AdlMidiSequencer // Inlucde MIDI sequencer class implementation #include "midi_sequencer_impl.hpp" +#include "adlmidi_private.hpp" /**************************************************** * Real-Time MIDI calls proxies * |