boot_screen.h 466 B

1234567891011121314151617181920
  1. /*
  2. * boot_screen.h
  3. *
  4. * Created on: Jan 12, 2021
  5. * Author: David Original work by Jose (PTDreamer), 2017
  6. */
  7. #ifndef GRAPHICS_GUI_BOOT_H_
  8. #define GRAPHICS_GUI_BOOT_H_
  9. #include "screen.h"
  10. extern screen_t Screen_boot;
  11. void boot_screen_setup(screen_t * scr);
  12. int boot_screen_processInput(screen_t * scr, RE_Rotation_t input, RE_State_t *);
  13. void boot_screen_init(screen_t * scr);
  14. void boot_screen_draw(screen_t * scr);
  15. #endif /* GRAPHICS_GUI_BOOT_H_ */