blob: 2a51c7713320465a936658ca559e5d2b4a51577f (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <stdint.h>
#define APP_SCREEN_W 480
#define APP_SCREEN_H 800
#define APP_STATUS_H 60
EVEWindow *app_root(void);
void app_root_refresh(void);
void app_root_init(eve_view_constructor_t home_page);
|