1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-22 14:32:58 +02:00

Make EXPERIMENTAL_MIDI_OUT compilable, but it doesn't link

This commit is contained in:
Paul Licameli
2016-04-09 15:10:05 -04:00
parent 6ca3f25826
commit b28ec2957a
9 changed files with 42 additions and 23 deletions

View File

@@ -18,11 +18,18 @@
#include "Experimental.h"
#ifdef USE_MIDI
#ifdef EXPERIMENTAL_MIDI_OUT
#include "portmidi.h"
#include "porttime.h"
#include "allegro.h"
#include <vector>
class NoteTrack;
using NoteTrackArray = std::vector < NoteTrack* >;
#endif // EXPERIMENTAL_MIDI_OUT
#endif // USE_MIDI
#if USE_PORTMIXER