From cf2cfcd8a96921dbe812647045dff71ab63989cd Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Wed, 9 Oct 2024 03:12:15 +0200 Subject: Added synth thread that plays a simple note --- synth.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 synth.h (limited to 'synth.h') 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_ + -- cgit v1.2.3