blob: f151e357757715c057563fe78385ec35ffde2948 (
plain) (
tree)
|
|
#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 */
|