diff options
author | Christian Pointner <equinox@spreadspace.org> | 2015-10-12 07:45:36 +0200 |
---|---|---|
committer | Christian Pointner <equinox@spreadspace.org> | 2015-10-12 07:45:36 +0200 |
commit | 72f7565e3210dfc8c068962fdcae7c99db5d6557 (patch) | |
tree | 6c54e6a0cfb3eefd91b7a724dc3b1b5e5c922058 /client/midi.h | |
parent | added support for midi (diff) |
added inital osc support
Diffstat (limited to 'client/midi.h')
-rw-r--r-- | client/midi.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/midi.h b/client/midi.h index 2446103..b6e51fc 100644 --- a/client/midi.h +++ b/client/midi.h @@ -27,6 +27,7 @@ #include <poll.h> #include "slist.h" +#include "osc.h" typedef struct { snd_rawmidi_t* input_; @@ -49,7 +50,6 @@ typedef struct { int midi_init(midi_t* m, const char* device); int midi_get_poll_fd_count(midi_t* m); int midi_get_poll_fds(midi_t* m, struct pollfd *pfds, int npfds); -//int midi_handle_revents(midi_t* m, struct pollfd *pfds, int npfds, osc_t* o); -int midi_handle_revents(midi_t* m, struct pollfd *pfds, int npfds); +int midi_handle_revents(midi_t* m, struct pollfd *pfds, int npfds, osc_t* o); #endif |