diff options
| author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2024-10-11 07:51:18 +0200 |
|---|---|---|
| committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2024-10-11 07:51:18 +0200 |
| commit | 920bdc358831087c46db736120a718ed9a75fbd4 (patch) | |
| tree | e884606865dccd8e756c4271b24f7ecc33f19826 /interface.h | |
| parent | ac6283f92b0579c0e820e13a83715389455d3171 (diff) | |
| download | ttdaw-920bdc358831087c46db736120a718ed9a75fbd4.tar.gz | |
Added boilerplate interface code
Diffstat (limited to 'interface.h')
| -rw-r--r-- | interface.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/interface.h b/interface.h index e320785..da8227e 100644 --- a/interface.h +++ b/interface.h @@ -1,5 +1,12 @@ #ifndef INTERFACE_H #define INTERFACE_H +typedef struct { + char *soundfont_file; + int soundfont_preset; +} InterfaceArgs; + +void *interface(void *arg); + #endif // INTERFACE_H |
