summaryrefslogtreecommitdiffstats
path: root/minui/minui.h
diff options
context:
space:
mode:
authorVojtech Bocek <vbocek@gmail.com>2013-09-06 21:32:22 +0200
committerVojtech Bocek <vbocek@gmail.com>2013-09-06 21:32:22 +0200
commit65fdcddec6c616bf0e1d3ee39bca242c05094410 (patch)
tree40b863d30592629f28301ac3f3f53a8efe6cceca /minui/minui.h
parentMerge "Add more args to make_ext4fs command" into twrp2.7 (diff)
downloadandroid_bootable_recovery-65fdcddec6c616bf0e1d3ee39bca242c05094410.tar
android_bootable_recovery-65fdcddec6c616bf0e1d3ee39bca242c05094410.tar.gz
android_bootable_recovery-65fdcddec6c616bf0e1d3ee39bca242c05094410.tar.bz2
android_bootable_recovery-65fdcddec6c616bf0e1d3ee39bca242c05094410.tar.lz
android_bootable_recovery-65fdcddec6c616bf0e1d3ee39bca242c05094410.tar.xz
android_bootable_recovery-65fdcddec6c616bf0e1d3ee39bca242c05094410.tar.zst
android_bootable_recovery-65fdcddec6c616bf0e1d3ee39bca242c05094410.zip
Diffstat (limited to 'minui/minui.h')
-rw-r--r--minui/minui.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/minui/minui.h b/minui/minui.h
index 1b8dd059b..ccd501f85 100644
--- a/minui/minui.h
+++ b/minui/minui.h
@@ -37,7 +37,12 @@ void gr_fb_blank(bool blank);
void gr_color(unsigned char r, unsigned char g, unsigned char b, unsigned char a);
void gr_fill(int x1, int y1, int x2, int y2);
-int gr_text(int x, int y, const char *s, int bold);
+
+// system/core/charger uses different gr_print signatures in diferent
+// Android versions, either with or without int bold.
+int gr_text(int x, int y, const char *s, ...);
+int gr_text_impl(int x, int y, const char *s, int bold);
+
void gr_texticon(int x, int y, gr_surface icon);
int gr_measure(const char *s);
void gr_font_size(int *x, int *y);