diff options
Diffstat (limited to 'apps/osc.h')
-rw-r--r-- | apps/osc.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -26,6 +26,8 @@ #include "lo/lo.h" #include <poll.h> +#include "mixer.h" + typedef struct { lo_server server_; } osc_t; @@ -33,6 +35,6 @@ typedef struct { int osc_init(osc_t* o, const char* port); int osc_get_poll_fd_count(osc_t* o); int osc_get_poll_fds(osc_t* o, struct pollfd *pfds, int npfds); -int osc_handle_revents(osc_t* o, struct pollfd *pfds, int npfds); +int osc_handle_revents(osc_t* o, struct pollfd *pfds, int npfds, mixer_t* x); #endif |