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