summaryrefslogtreecommitdiff
path: root/apps/osc.h
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2015-10-10 06:20:46 +0200
committerChristian Pointner <equinox@spreadspace.org>2015-10-10 06:20:46 +0200
commite60a68ede522e56b3a52ddad25ab1704b587e9c2 (patch)
treebe96ce85eb659ca06b1e464e8b11885c63e9a074 /apps/osc.h
parentosc know has an own stuct too (diff)
midi is now using a thread as well
Diffstat (limited to 'apps/osc.h')
-rw-r--r--apps/osc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/osc.h b/apps/osc.h
index d9163e2..7a03cb7 100644
--- a/apps/osc.h
+++ b/apps/osc.h
@@ -30,7 +30,7 @@ typedef struct {
} osc_t;
int osc_init(osc_t* o, const char* port);
-void osc_start(osc_t* o);
-void osc_stop(osc_t* o);
+int osc_start(osc_t* o);
+int osc_stop(osc_t* o);
#endif