Musepack speed optimization. Speep up 64 bit precision synthesizer by another 1.5MHz...
[kugel-rb.git] / apps / gui / gwps-common.h
blob311975550295f7592503f6ef0cd23f065dd6f41f
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2002 Björn Stenberg
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.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
19 #ifndef _GWPS_COMMON_
20 #define _GWPS_COMMON_
21 #include <stdbool.h>
22 #include <sys/types.h> /* for size_t */
24 #include "gwps.h"
26 void fade(bool fade_in);
27 bool gui_wps_display(void);
28 bool update_onvol_change(struct gui_wps * gwps);
29 bool update(struct gui_wps *gwps);
30 void play_hop(int direction);
31 bool ffwd_rew(int button);
32 void display_keylock_text(bool locked);
34 bool gui_wps_refresh(struct gui_wps *gwps,
35 int ffwd_offset,
36 unsigned char refresh_mode);
37 #endif