Will also set overlay to lockscreen so we don't have inadvetent screen selections. Touching the screen will bring the display back up. add back check script for poweroff move diff time function to twrp-functions.cpp make sure we chmod after copy_file add read_file and write_file functions to twrp-functions.cpp make single thread try to force update screen add forceRender drop caches after tar processing Change-Id: I3c5c509dd39dbb05451bbfe5d8b56d53c90d8d1b
14 lines
289 B
C
14 lines
289 B
C
#ifndef _GUI_HEADER
|
|
#define _GUI_HEADER
|
|
|
|
int gui_console_only();
|
|
int gui_init();
|
|
int gui_loadResources();
|
|
int gui_start();
|
|
int gui_startPage(const char* page_name);
|
|
void gui_print(const char *fmt, ...);
|
|
void gui_print_overwrite(const char *fmt, ...);
|
|
|
|
#endif // _GUI_HEADER
|
|
|