summaryrefslogtreecommitdiffstats
path: root/minui/include/minui/minui.h
diff options
context:
space:
mode:
authorTianjie Xu <xunchang@google.com>2017-09-27 19:49:17 +0200
committerandroid-build-merger <android-build-merger@google.com>2017-09-27 19:49:17 +0200
commit5e969aa10d5ab75e52dccaebbb367473a586f642 (patch)
tree4ce018893e091c21392e022432a50b4a84eb79cd /minui/include/minui/minui.h
parentMerge "clang-format: Remove the override of PenaltyExcessCharacter." am: 151f0820ac (diff)
parentMerge "Add a new option in recovery menu to test the background texts" (diff)
downloadandroid_bootable_recovery-5e969aa10d5ab75e52dccaebbb367473a586f642.tar
android_bootable_recovery-5e969aa10d5ab75e52dccaebbb367473a586f642.tar.gz
android_bootable_recovery-5e969aa10d5ab75e52dccaebbb367473a586f642.tar.bz2
android_bootable_recovery-5e969aa10d5ab75e52dccaebbb367473a586f642.tar.lz
android_bootable_recovery-5e969aa10d5ab75e52dccaebbb367473a586f642.tar.xz
android_bootable_recovery-5e969aa10d5ab75e52dccaebbb367473a586f642.tar.zst
android_bootable_recovery-5e969aa10d5ab75e52dccaebbb367473a586f642.zip
Diffstat (limited to 'minui/include/minui/minui.h')
-rw-r--r--minui/include/minui/minui.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/minui/include/minui/minui.h b/minui/include/minui/minui.h
index 017ddde75..27e603136 100644
--- a/minui/include/minui/minui.h
+++ b/minui/include/minui/minui.h
@@ -21,6 +21,7 @@
#include <functional>
#include <string>
+#include <vector>
//
// Graphics.
@@ -129,6 +130,9 @@ int res_create_alpha_surface(const char* name, GRSurface** pSurface);
int res_create_localized_alpha_surface(const char* name, const char* locale,
GRSurface** pSurface);
+// Return a list of locale strings embedded in |png_name|. Return a empty list in case of failure.
+std::vector<std::string> get_locales_in_png(const std::string& png_name);
+
// Free a surface allocated by any of the res_create_*_surface()
// functions.
void res_free_surface(GRSurface* surface);