blob: 7a445652bf60a278972d7e743c3e27ca39b6092f (
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);
|