diff options
author | Steve Kondik <shade@chemlab.org> | 2014-04-30 22:25:41 +0200 |
---|---|---|
committer | Hashcode <hashcode0f@gmail.com> | 2014-04-30 22:25:41 +0200 |
commit | 626009f1b0ac5d8f62fea4ced561c08ece0953a7 (patch) | |
tree | 11addc7fc63ec9dd3e8e5c6a73aeaa3e213dfad0 | |
parent | Only setup settings,andsec partitions if available (diff) | |
download | android_bootable_recovery-626009f1b0ac5d8f62fea4ced561c08ece0953a7.tar android_bootable_recovery-626009f1b0ac5d8f62fea4ced561c08ece0953a7.tar.gz android_bootable_recovery-626009f1b0ac5d8f62fea4ced561c08ece0953a7.tar.bz2 android_bootable_recovery-626009f1b0ac5d8f62fea4ced561c08ece0953a7.tar.lz android_bootable_recovery-626009f1b0ac5d8f62fea4ced561c08ece0953a7.tar.xz android_bootable_recovery-626009f1b0ac5d8f62fea4ced561c08ece0953a7.tar.zst android_bootable_recovery-626009f1b0ac5d8f62fea4ced561c08ece0953a7.zip |
-rw-r--r-- | minui/minui.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/minui/minui.h b/minui/minui.h index ccd501f85..b8ca40b9f 100644 --- a/minui/minui.h +++ b/minui/minui.h @@ -79,6 +79,9 @@ void ev_dispatch(void); int res_create_surface(const char* name, gr_surface* pSurface); int res_create_localized_surface(const char* name, gr_surface* pSurface); void res_free_surface(gr_surface surface); +static inline int res_create_display_surface(const char* name, gr_surface* pSurface) { + return res_create_surface(name, pSurface); +} #ifdef __cplusplus } |