blob: f151e357757715c057563fe78385ec35ffde2948 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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 */
|