diff options
Diffstat (limited to 'apps/gui/wps.h')
-rw-r--r-- | apps/gui/wps.h | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/apps/gui/wps.h b/apps/gui/wps.h index a463b0e9bb..a2893a3902 100644 --- a/apps/gui/wps.h +++ b/apps/gui/wps.h @@ -20,32 +20,19 @@ ****************************************************************************/ #ifndef _WPS_H_ #define _WPS_H_ + #include <stdbool.h> -#include "config.h" -#include "screen_access.h" - -long gui_wps_show(void); - -/* wrapper for the wps to load the skin (.wps/.rwps) files */ -void wps_data_load(enum screen_type, const char *, bool); -void gui_sync_wps_init(void) INIT_ATTR; +long gui_wps_show(void); /* fade (if enabled) and pause the audio, optionally rewind a little */ void pause_action(bool may_fade, bool updatewps); void unpause_action(bool may_fade, bool updatewps); - -/* fades the volume, e.g. on pause or stop */ -void fade(bool fade_in, bool updatewps); - -bool ffwd_rew(int button); void wps_do_playpause(bool updatewps); #ifdef IPOD_ACCESSORY_PROTOCOL /* whether the wps is fading the volume due to pausing/stopping */ bool is_wps_fading(void); -/* return length of the current ff or rewin action, IAP needs this */ -int wps_get_ff_rewind_count(void); #endif /* IPOD_ACCESSORY_PROTOCOL */ /* in milliseconds */ |