diff options
author | Roland Reichwein <mail@reichwein.it> | 2025-01-11 15:48:58 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2025-01-11 15:48:58 +0100 |
commit | 4c5f531300efe0faf2aea88dd6c78f05012934c8 (patch) | |
tree | 004e37b722698a73d033c9f2720313dfc58b7f97 /MIDI.h | |
parent | 445b696f43a9106f8871a67c077e990ce1ca14ab (diff) |
Monitor MIDI byte stream
Diffstat (limited to 'MIDI.h')
-rw-r--r-- | MIDI.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5,9 +5,8 @@ #include "log.h" #include <boost/signals2.hpp> - +#include <alsa/asoundlib.h> #include <fmt/format.h> - #include <iostream> class MIDI @@ -39,5 +38,6 @@ private: int in_port; int npfd; struct pollfd* pfd; + snd_midi_event_t* midi_event_parser; }; |