diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2006-11-06 10:11:51 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2006-11-06 10:11:51 +0000 |
| commit | 6a1161b634e43225ae12bf669ad3bbe1ea1edab0 (patch) | |
| tree | 57a5b054cca637e51263077e8405bb83c62d53e2 /apps/plugin.h | |
| parent | 2f444aac2910cebeed988ea22d442456a4729ea4 (diff) | |
| download | rockbox-6a1161b634e43225ae12bf669ad3bbe1ea1edab0.zip rockbox-6a1161b634e43225ae12bf669ad3bbe1ea1edab0.tar.gz rockbox-6a1161b634e43225ae12bf669ad3bbe1ea1edab0.tar.bz2 rockbox-6a1161b634e43225ae12bf669ad3bbe1ea1edab0.tar.xz | |
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.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index a7ed889..54d2702 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -275,7 +275,8 @@ struct plugin_api { void (*gui_synclist_scroll_right)(struct gui_synclist * lists); void (*gui_synclist_scroll_left)(struct gui_synclist * lists); #endif - unsigned (*gui_synclist_do_button)(struct gui_synclist * lists, unsigned button); + unsigned (*gui_synclist_do_button)(struct gui_synclist * lists, + unsigned button,enum list_wrap wrap); /* button */ long (*button_get)(bool block); |