summaryrefslogtreecommitdiff
path: root/apps/plugin.c
diff options
context:
space:
mode:
authorYoshihisa Uchida <uchida@rockbox.org>2010-07-07 11:35:30 +0000
committerYoshihisa Uchida <uchida@rockbox.org>2010-07-07 11:35:30 +0000
commite5a257607dd93afe239a03dff0d093dfb3af64be (patch)
tree77565f61e5de1cadc8a9531b2931656bc336c3ad /apps/plugin.c
parent6d609e009f4836418bbe5b404be8ae03d29ef8cb (diff)
downloadrockbox-e5a257607dd93afe239a03dff0d093dfb3af64be.tar.gz
rockbox-e5a257607dd93afe239a03dff0d093dfb3af64be.zip
plugin api: add the following functions.
- get the viewport of the current skin. - update the current skin statusbar. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27333 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.c')
-rw-r--r--apps/plugin.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index 51ef40f010..1196a88195 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -565,6 +565,11 @@ static const struct plugin_api rockbox_api = {
565 /* statusbars */ 565 /* statusbars */
566 &statusbars, 566 &statusbars,
567 gui_syncstatusbar_draw, 567 gui_syncstatusbar_draw,
568#ifdef HAVE_LCD_BITMAP
569 sb_skin_get_info_vp,
570 sb_skin_update,
571#endif
572
568 /* options */ 573 /* options */
569 get_settings_list, 574 get_settings_list,
570 find_setting, 575 find_setting,