blob: 439660e831ce86ced9b4c845916063dfd7ffd949 [file] [log] [blame]
Björn Stenberg6131a3c2002-08-30 11:04:41 +00001/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2002 Björn Stenberg
11 *
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
14 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
17 *
18 ****************************************************************************/
19#ifndef WPS_DISPLAY
20#define WPS_DISPLAY
21
22#include <stdbool.h>
23#include "id3.h"
24
25bool wps_refresh(struct mp3entry* id3, int ffwd_offset, bool refresh_scroll);
26void wps_display(struct mp3entry* id3);
Björn Stenbergdea31222002-10-08 15:42:40 +000027bool wps_load(char* file, bool display);
Björn Stenberg6131a3c2002-08-30 11:04:41 +000028
Daniel Stenberg99b69bf2002-08-30 13:08:37 +000029#ifdef HAVE_LCD_CHARCELLS
Justin Heinerb5025a82002-08-31 04:58:35 +000030bool draw_player_progress(struct mp3entry* id3, int ff_rewind_count);
Daniel Stenberg99b69bf2002-08-30 13:08:37 +000031#endif
32
Björn Stenberg6131a3c2002-08-30 11:04:41 +000033#endif