Björn Stenberg | 6131a3c | 2002-08-30 11:04:41 +0000 | [diff] [blame] | 1 | /*************************************************************************** |
| 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 | |
| 25 | bool wps_refresh(struct mp3entry* id3, int ffwd_offset, bool refresh_scroll); |
| 26 | void wps_display(struct mp3entry* id3); |
Björn Stenberg | dea3122 | 2002-10-08 15:42:40 +0000 | [diff] [blame^] | 27 | bool wps_load(char* file, bool display); |
Björn Stenberg | 6131a3c | 2002-08-30 11:04:41 +0000 | [diff] [blame] | 28 | |
Daniel Stenberg | 99b69bf | 2002-08-30 13:08:37 +0000 | [diff] [blame] | 29 | #ifdef HAVE_LCD_CHARCELLS |
Justin Heiner | b5025a8 | 2002-08-31 04:58:35 +0000 | [diff] [blame] | 30 | bool draw_player_progress(struct mp3entry* id3, int ff_rewind_count); |
Daniel Stenberg | 99b69bf | 2002-08-30 13:08:37 +0000 | [diff] [blame] | 31 | #endif |
| 32 | |
Björn Stenberg | 6131a3c | 2002-08-30 11:04:41 +0000 | [diff] [blame] | 33 | #endif |