diff options
author | Elliott Hughes <enh@google.com> | 2015-04-11 22:39:04 +0200 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2015-04-11 22:39:04 +0200 |
commit | d56e0f377eab630b1fbedcf291954489fd4fa5e3 (patch) | |
tree | 0aa433c8011bd181990ed855aa61fd3537a1ff38 /screen_ui.h | |
parent | am 558ba1ba: Merge "Revert "Append kernel logs to last_log file"" (diff) | |
parent | Merge "Rewritten file pager." (diff) | |
download | android_bootable_recovery-d56e0f377eab630b1fbedcf291954489fd4fa5e3.tar android_bootable_recovery-d56e0f377eab630b1fbedcf291954489fd4fa5e3.tar.gz android_bootable_recovery-d56e0f377eab630b1fbedcf291954489fd4fa5e3.tar.bz2 android_bootable_recovery-d56e0f377eab630b1fbedcf291954489fd4fa5e3.tar.lz android_bootable_recovery-d56e0f377eab630b1fbedcf291954489fd4fa5e3.tar.xz android_bootable_recovery-d56e0f377eab630b1fbedcf291954489fd4fa5e3.tar.zst android_bootable_recovery-d56e0f377eab630b1fbedcf291954489fd4fa5e3.zip |
Diffstat (limited to '')
-rw-r--r-- | screen_ui.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/screen_ui.h b/screen_ui.h index ea1a95be1..590e5c8e6 100644 --- a/screen_ui.h +++ b/screen_ui.h @@ -18,6 +18,7 @@ #define RECOVERY_SCREEN_UI_H #include <pthread.h> +#include <stdio.h> #include "ui.h" #include "minui/minui.h" @@ -114,7 +115,11 @@ class ScreenRecoveryUI : public RecoveryUI { static void* progress_thread(void* cookie); void progress_loop(); - void print_no_update(const char*); + void ShowFile(FILE*); + void PutChar(char); + void ClearText(); + + void DrawHorizontalRule(int* y); void LoadBitmap(const char* filename, gr_surface* surface); void LoadBitmapArray(const char* filename, int* frames, gr_surface** surface); |