diff options
| author | Kevin Ferrare <kevin@rockbox.org> | 2006-07-02 12:28:27 +0000 |
|---|---|---|
| committer | Kevin Ferrare <kevin@rockbox.org> | 2006-07-02 12:28:27 +0000 |
| commit | f77ac7a6a7e19aa20bdeb10bd006ad1a8c147f76 (patch) | |
| tree | e3d2b4912b5e810ec63f109bc112b1d05972d0e3 /apps/plugin.h | |
| parent | 31c7a453e1b852c48a9429be3ad23d4e85a2945f (diff) | |
| download | rockbox-f77ac7a6a7e19aa20bdeb10bd006ad1a8c147f76.zip rockbox-f77ac7a6a7e19aa20bdeb10bd006ad1a8c147f76.tar.gz rockbox-f77ac7a6a7e19aa20bdeb10bd006ad1a8c147f76.tar.bz2 rockbox-f77ac7a6a7e19aa20bdeb10bd006ad1a8c147f76.tar.xz | |
added support remote support for the id3 infos screen (had to slightly change the list engine to use it here as well), corrected a mistake in the french translation
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10175 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.h')
| -rw-r--r-- | apps/plugin.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index f276540..1429e83 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -7,7 +7,7 @@ * \/ \/ \/ \/ \/ * $Id$ * - * Copyright (C) 2002 Bj�n Stenberg + * Copyright (C) 2002 Björn Stenberg * * All files in this archive are subject to the GNU General Public License. * See the file COPYING in the source tree root for full license agreement. @@ -488,7 +488,8 @@ struct plugin_api { /* list */ void (*gui_synclist_init)(struct gui_synclist * lists, - list_get_name callback_get_item_name,void * data); + list_get_name callback_get_item_name,void * data, + bool scroll_all,int selected_size); void (*gui_synclist_set_nb_items)(struct gui_synclist * lists, int nb_items); void (*gui_synclist_set_icon_callback)(struct gui_synclist * lists, list_get_icon icon_callback); int (*gui_synclist_get_nb_items)(struct gui_synclist * lists); |