diff options
author | Ethan Yonker <dees_troy@teamw.in> | 2014-08-08 18:03:51 +0200 |
---|---|---|
committer | Ethan Yonker <dees_troy@teamw.in> | 2014-08-09 14:49:35 +0200 |
commit | 03a42f6c6afc69919544c6dbe0fce49637ec17df (patch) | |
tree | f47a227f97e67e0ce61d00b6cea427aa0c59de95 /gui/gui.h | |
parent | Set font based on resolution if not set already (diff) | |
download | android_bootable_recovery-03a42f6c6afc69919544c6dbe0fce49637ec17df.tar android_bootable_recovery-03a42f6c6afc69919544c6dbe0fce49637ec17df.tar.gz android_bootable_recovery-03a42f6c6afc69919544c6dbe0fce49637ec17df.tar.bz2 android_bootable_recovery-03a42f6c6afc69919544c6dbe0fce49637ec17df.tar.lz android_bootable_recovery-03a42f6c6afc69919544c6dbe0fce49637ec17df.tar.xz android_bootable_recovery-03a42f6c6afc69919544c6dbe0fce49637ec17df.tar.zst android_bootable_recovery-03a42f6c6afc69919544c6dbe0fce49637ec17df.zip |
Diffstat (limited to 'gui/gui.h')
-rw-r--r-- | gui/gui.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -19,6 +19,8 @@ #ifndef _GUI_HEADER #define _GUI_HEADER +#include <stdio.h> + int gui_console_only(); int gui_init(); int gui_loadResources(); @@ -26,6 +28,7 @@ int gui_start(); int gui_startPage(const char* page_name); void gui_print(const char *fmt, ...); void gui_print_color(const char *color, const char *fmt, ...); +void gui_set_FILE(FILE* f); #endif // _GUI_HEADER |