Codec lib directories renamed, except for demac.
[kugel-rb.git] / apps / gui / gwps-common.h
blob3102d72c8082ff87083d9250772384252e7ee35f
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2002 Björn Stenberg
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
21 #ifndef _GWPS_COMMON_
22 #define _GWPS_COMMON_
23 #include <stdbool.h>
24 #include <sys/types.h> /* for size_t */
26 #include "gwps.h"
28 void fade(bool fade_in, bool updatewps);
29 bool gui_wps_display(void);
30 bool update_onvol_change(struct gui_wps * gwps);
31 bool update(struct gui_wps *gwps);
32 void play_hop(int direction);
33 bool ffwd_rew(int button);
34 void display_keylock_text(bool locked);
36 bool gui_wps_refresh(struct gui_wps *gwps,
37 int ffwd_offset,
38 unsigned char refresh_mode);
39 #endif