summaryrefslogtreecommitdiff
path: root/apps/osc.h
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2015-10-10 04:22:28 +0200
committerChristian Pointner <equinox@spreadspace.org>2015-10-10 04:22:28 +0200
commitd4598b36c8aaaae77790ce77cee544e36f6b48ae (patch)
tree8947de86383d2b355ad122f3bc82628f561c3a6d /apps/osc.h
parentapp vs apps (diff)
moved osc stuff to separate files
Diffstat (limited to 'apps/osc.h')
-rw-r--r--apps/osc.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/apps/osc.h b/apps/osc.h
new file mode 100644
index 0000000..51c0539
--- /dev/null
+++ b/apps/osc.h
@@ -0,0 +1,32 @@
+/*
+ * dolmetschctl
+ *
+ *
+ * Copyright (C) 2015 Christian Pointner <equinox@spreadspace.org>
+ *
+ * This file is part of dolmetschctl.
+ *
+ * dolmetschctl is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * any later version.
+ *
+ * dolmetschctl is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with dolmetschctl. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef DOLMETSCHCTL_osc_h_INCLUDED
+#define DOLMETSCHCTL_osc_h_INCLUDED
+
+#include "lo/lo.h"
+
+lo_server_thread osc_init(const char* port);
+void osc_start(lo_server_thread);
+void osc_stop(lo_server_thread);
+
+#endif