ui.h 187 B

12345678910111213141516171819
  1. #ifndef ui_H_INCLUDED
  2. #define ui_H_INCLUDED
  3. /* Data struct for the particular GUI state */
  4. struct ui_state {
  5. zori_id screen;
  6. zori_id console;
  7. };
  8. void ui_setup(void);
  9. #endif