blob: da8227e9ac3e75cfde9b83a4cc0da0089ad02e5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef INTERFACE_H
#define INTERFACE_H
typedef struct {
char *soundfont_file;
int soundfont_preset;
} InterfaceArgs;
void *interface(void *arg);
#endif // INTERFACE_H
|