blob: b085344b422ed5857613cea6ff00c9115ae2e7ba (
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 800
#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);
|