summaryrefslogtreecommitdiff
path: root/synth.h
diff options
context:
space:
mode:
Diffstat (limited to 'synth.h')
-rw-r--r--synth.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/synth.h b/synth.h
new file mode 100644
index 0000000..1976745
--- /dev/null
+++ b/synth.h
@@ -0,0 +1,11 @@
+#ifndef SYNTH_H_
+#define SYNTH_H_
+
+typedef struct {
+ char *soundfont_file;
+} SynthArgs;
+
+void *synth(void *arg);
+
+#endif // SYNTH_H_
+