2002-06-25 09:09:45 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 Jerome Kuptz
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2002-06-25 08:58:11 +00:00
|
|
|
#ifndef _WPS_H
|
|
|
|
#define _WPS_H
|
|
|
|
#include "id3.h"
|
|
|
|
#include "playlist.h"
|
|
|
|
|
2002-08-07 10:35:26 +00:00
|
|
|
extern bool keys_locked;
|
2002-08-31 04:58:35 +00:00
|
|
|
extern bool wps_time_countup;
|
2002-08-07 10:35:26 +00:00
|
|
|
|
2002-07-01 11:06:23 +00:00
|
|
|
int wps_show(void);
|
2002-08-22 14:19:47 +00:00
|
|
|
|
2002-08-24 06:57:24 +00:00
|
|
|
bool load_custom_wps(void);
|
|
|
|
bool display_custom_wps(int x_val, int y_val, bool do_scroll, char *wps_string);
|
2002-08-29 05:41:35 +00:00
|
|
|
bool refresh_wps(bool refresh_scroll);
|
2002-08-30 07:11:18 +00:00
|
|
|
|
2002-09-03 15:58:47 +00:00
|
|
|
#ifdef HAVE_RECORDER_KEYPAD
|
|
|
|
bool f2_screen(void);
|
|
|
|
bool f3_screen(void);
|
|
|
|
#endif
|
|
|
|
|
2002-06-25 08:58:11 +00:00
|
|
|
#endif
|