diff options
author | Thomas Martitz <kugel@rockbox.org> | 2009-08-03 15:46:21 +0000 |
---|---|---|
committer | Thomas Martitz <kugel@rockbox.org> | 2009-08-03 15:46:21 +0000 |
commit | cc05424e4456fc9fa3eba49b97bf1406d540b3c3 (patch) | |
tree | 504378cb4a1a57cb4b1f65b56048430e1d2fad3b /apps/gui/wps.h | |
parent | 2287dd9daaf62e8624755c41f2a0571c5b9d3357 (diff) | |
download | rockbox-cc05424e4456fc9fa3eba49b97bf1406d540b3c3.tar.gz rockbox-cc05424e4456fc9fa3eba49b97bf1406d540b3c3.zip |
Fix reds for IAP and a missing #include.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22141 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui/wps.h')
-rw-r--r-- | apps/gui/wps.h | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/apps/gui/wps.h b/apps/gui/wps.h index b8cb7d2ffa..f2f44859ca 100644 --- a/apps/gui/wps.h +++ b/apps/gui/wps.h | |||
@@ -18,13 +18,17 @@ | |||
18 | * KIND, either express or implied. | 18 | * KIND, either express or implied. |
19 | * | 19 | * |
20 | ****************************************************************************/ | 20 | ****************************************************************************/ |
21 | #ifndef _MUSICSCREEN_H_ | 21 | #ifndef _WPS_H_ |
22 | #define _MUSICSCREEN_H_ | 22 | #define _WPS_H_ |
23 | #include <stdbool.h> | 23 | #include <stdbool.h> |
24 | #include "screen_access.h" | ||
24 | 25 | ||
25 | long gui_wps_show(void); | 26 | long gui_wps_show(void); |
26 | 27 | ||
27 | 28 | /* wrapper for the wps to load the skin (.wps/.rwps) files */ | |
29 | void wps_data_load(enum screen_type, const char *, bool); | ||
30 | void wps_data_init(enum screen_type); | ||
31 | |||
28 | void gui_sync_wps_init(void); | 32 | void gui_sync_wps_init(void); |
29 | 33 | ||
30 | /* fades the volume, e.g. on pause or stop */ | 34 | /* fades the volume, e.g. on pause or stop */ |
@@ -35,9 +39,6 @@ void display_keylock_text(bool locked); | |||
35 | 39 | ||
36 | bool is_wps_fading(void); | 40 | bool is_wps_fading(void); |
37 | 41 | ||
38 | /* wrapper for the wps to load the skin (.wps/.rwps) files */ | ||
39 | void wps_data_load(enum screen_type, const char *, bool); | ||
40 | void wps_data_init(enum screen_type); | ||
41 | 42 | ||
42 | #ifdef HAVE_ALBUMART | 43 | #ifdef HAVE_ALBUMART |
43 | /* | 44 | /* |
@@ -47,4 +48,10 @@ void wps_data_init(enum screen_type); | |||
47 | */ | 48 | */ |
48 | bool wps_uses_albumart(int*, int*); | 49 | bool wps_uses_albumart(int*, int*); |
49 | #endif | 50 | #endif |
50 | #endif | 51 | |
52 | #ifdef IPOD_ACCESSORY_PROTOCOL | ||
53 | /* return length of the current ff or rewin action, IAP needs this */ | ||
54 | int wps_get_ff_rewind_count(void); | ||
55 | #endif /* IPOD_ACCESSORY_PROTOCOL */ | ||
56 | |||
57 | #endif /* _WPS_H_ */ | ||