blob: 35f889fa08c176089e6db783d9a7c0b10bb5cca8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <stdint.h>
#define APP_SCREEN_W 480
#define APP_SCREEN_H 854
#define APP_STATUS_H 60
#define APP_FONT_HANDLE 31
EVEWindowRoot *app_root(void);
void app_root_refresh(void);
void app_root_init(eve_view_constructor_t home_page, int b);
|