diff options
Diffstat (limited to 'synth.h')
| -rw-r--r-- | synth.h | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -0,0 +1,11 @@ +#ifndef SYNTH_H_ +#define SYNTH_H_ + +typedef struct { + char *soundfont_file; +} SynthArgs; + +void *synth(void *arg); + +#endif // SYNTH_H_ + |
