summaryrefslogtreecommitdiff
path: root/apps/gui/gwps-common.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/gui/gwps-common.h')
-rw-r--r--apps/gui/gwps-common.h28
1 files changed, 21 insertions, 7 deletions
diff --git a/apps/gui/gwps-common.h b/apps/gui/gwps-common.h
index 5cf052898d..fe7f2f66da 100644
--- a/apps/gui/gwps-common.h
+++ b/apps/gui/gwps-common.h
@@ -1,18 +1,32 @@
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 ****************************************************************************/
1#ifndef _GWPS_COMMON_ 19#ifndef _GWPS_COMMON_
2#define _GWPS_COMMON_ 20#define _GWPS_COMMON_
3#include <stdbool.h> 21#include <stdbool.h>
4#include <sys/types.h> /* for size_t */ 22#include <sys/types.h> /* for size_t */
5 23
6/* to avoid the unnecessary include if gwps.h */ 24#include "gwps.h"
7struct mp3entry;
8struct gui_img;
9struct wps_data;
10struct gui_wps;
11struct align_pos;
12 25
13void gui_wps_format_time(char* buf, int buf_size, long time); 26void gui_wps_format_time(char* buf, int buf_size, long time);
14void fade(bool fade_in); 27void fade(bool fade_in);
15void gui_wps_format(struct wps_data *data, const char *bmpdir, size_t bmpdirlen); 28void gui_wps_format(struct wps_data *data, const char *bmpdir,
29 size_t bmpdirlen);
16bool gui_wps_refresh(struct gui_wps *gwps, int ffwd_offset, 30bool gui_wps_refresh(struct gui_wps *gwps, int ffwd_offset,
17 unsigned char refresh_mode); 31 unsigned char refresh_mode);
18bool gui_wps_display(void); 32bool gui_wps_display(void);