diff options
Diffstat (limited to 'apps/midi.h')
-rw-r--r-- | apps/midi.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/midi.h b/apps/midi.h index f2aa119..38b1a7c 100644 --- a/apps/midi.h +++ b/apps/midi.h @@ -31,8 +31,8 @@ typedef struct { } midi_t; int midi_init(midi_t* m, const char* device); -int midi_get_poll_desc_count(midi_t* m); -int midi_get_poll_desc(midi_t* m, struct pollfd *pfds, int npfds); +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); #endif |