diff options
author | grm <grm@eyesin.space> | 2025-03-02 13:53:54 +0200 |
---|---|---|
committer | grm <grm@eyesin.space> | 2025-03-02 13:53:54 +0200 |
commit | 9847614871e861c216425b95a8300dba37b0f6e6 (patch) | |
tree | f319cc5ebd58d2247d546a3c2149ce85559be6d8 /src/gui.h | |
parent | d5e9beaf5cc38c0e57bbc555a6e3054f3bf000d8 (diff) | |
download | synth-project-9847614871e861c216425b95a8300dba37b0f6e6.tar.gz synth-project-9847614871e861c216425b95a8300dba37b0f6e6.tar.bz2 synth-project-9847614871e861c216425b95a8300dba37b0f6e6.zip |
Also improve midi and add tt for templating
Diffstat (limited to 'src/gui.h')
-rw-r--r-- | src/gui.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/gui.h b/src/gui.h new file mode 100644 index 0000000..f151e35 --- /dev/null +++ b/src/gui.h @@ -0,0 +1,16 @@ +#ifndef GUI_H +#define GUI_H + +typedef enum screen_e { + SCREEN_MAIN = 0, + SCREEN_AUDIOMIDISETUP, + SCREEN_ERR +} screen_e; + +typedef struct synth_gui { + screen_e screen; + int audiomidi_initialized; +} synth_gui; + + +#endif /* GUI_H */ |