summaryrefslogtreecommitdiff
path: root/apps/osc.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/osc.h')
-rw-r--r--apps/osc.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/osc.h b/apps/osc.h
index ddef73e..b4a496e 100644
--- a/apps/osc.h
+++ b/apps/osc.h
@@ -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