1#ifndef SYNTH_H_
2#define SYNTH_H_
3
4#define AUDIO_FREQ 44100
5#define AUDIO_SAMPLES 128
6#define AUDIO_CHANNELS 2
7
8typedef struct {
9 char *soundfont_file;
10 int soundfont_preset;
11} SynthArgs;
12
13void *synth(void *arg);
14
15#endif // SYNTH_H_
16