blob: 484a11d9f59db3de15b88449839b4bf29bd7cfeb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
--- src/alsabackend.h
+++ src/alsabackend.h
@@ -0,0 +1,23 @@
+/*
+ * alsabackend.h
+ * ALSA sequencer MIDI backend.
+ *
+ * for Denemo, a gtk+ frontend to GNU Lilypond
+ * Copyright (C) 2011 Dominic Sacré
+ *
+ * This program 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
+ * (at your option) any later version.
+ */
+
+#ifndef ALSABACKEND_H
+#define ALSABACKEND_H
+
+#include "audiointerface.h"
+
+extern backend_t alsa_seq_midi_backend;
+
+
+#endif // ALSABACKEND_H
+
|