summaryrefslogtreecommitdiff
path: root/apps/plugin.h
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2006-11-06 10:11:51 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2006-11-06 10:11:51 +0000
commit6a1161b634e43225ae12bf669ad3bbe1ea1edab0 (patch)
tree57a5b054cca637e51263077e8405bb83c62d53e2 /apps/plugin.h
parent2f444aac2910cebeed988ea22d442456a4729ea4 (diff)
downloadrockbox-6a1161b634e43225ae12bf669ad3bbe1ea1edab0.tar.gz
rockbox-6a1161b634e43225ae12bf669ad3bbe1ea1edab0.zip
dont allow the volume setting to wrap
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11445 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.h')
-rw-r--r--apps/plugin.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/plugin.h b/apps/plugin.h
index a7ed88985d..54d2702017 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -275,7 +275,8 @@ struct plugin_api {
275 void (*gui_synclist_scroll_right)(struct gui_synclist * lists); 275 void (*gui_synclist_scroll_right)(struct gui_synclist * lists);
276 void (*gui_synclist_scroll_left)(struct gui_synclist * lists); 276 void (*gui_synclist_scroll_left)(struct gui_synclist * lists);
277#endif 277#endif
278 unsigned (*gui_synclist_do_button)(struct gui_synclist * lists, unsigned button); 278 unsigned (*gui_synclist_do_button)(struct gui_synclist * lists,
279 unsigned button,enum list_wrap wrap);
279 280
280 /* button */ 281 /* button */
281 long (*button_get)(bool block); 282 long (*button_get)(bool block);