summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/gui/gwps-common.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/apps/gui/gwps-common.h b/apps/gui/gwps-common.h
index 8752c1d162..0d196b28e4 100644
--- a/apps/gui/gwps-common.h
+++ b/apps/gui/gwps-common.h
@@ -28,21 +28,25 @@
28/* fades the volume, e.g. on pause or stop */ 28/* fades the volume, e.g. on pause or stop */
29void fade(bool fade_in, bool updatewps); 29void fade(bool fade_in, bool updatewps);
30 30
31/* Initially display the wps, can fall back to the build-in wps 31/* Initially display the wps, can fall back to the built-in wps
32 * if the chosen wps is invalid */ 32 * if the chosen wps is invalid.
33 *
34 * Return true on success, otherwise false */
33bool gui_wps_display(struct gui_wps *gui_wps); 35bool gui_wps_display(struct gui_wps *gui_wps);
34 36
35/* return true if screen restore is needed 37/* return true if screen restore is needed
36 return false otherwise */ 38 return false otherwise */
37bool update_onvol_change(struct gui_wps * gwps); 39bool update_onvol_change(struct gui_wps * gwps);
38 40
39/* Update track info related stuff, handles cue sheets as well, and redraw */ 41/* Update track info related stuff, handle cue sheets as well, and redraw */
40bool gui_wps_update(struct gui_wps *gwps); 42bool gui_wps_update(struct gui_wps *gwps);
41 43
42bool ffwd_rew(int button); 44bool ffwd_rew(int button);
43void display_keylock_text(bool locked); 45void display_keylock_text(bool locked);
44 46
45/* Refresh the WPS according to refresh_mode. */ 47/* Refresh the WPS according to refresh_mode.
48 *
49 * Return true on success, otherwise false */
46bool gui_wps_redraw(struct gui_wps *gwps, 50bool gui_wps_redraw(struct gui_wps *gwps,
47 int ffwd_offset, 51 int ffwd_offset,
48 unsigned refresh_mode); 52 unsigned refresh_mode);