diff options
| author | Alexander Levin <al.le@rockbox.org> | 2009-03-23 17:19:48 +0000 |
|---|---|---|
| committer | Alexander Levin <al.le@rockbox.org> | 2009-03-23 17:19:48 +0000 |
| commit | 73157ebb7c18d743045e31ef45ca79f570de24df (patch) | |
| tree | 7c9bc6895c31ae6eda9628219fc5041b973cbec1 /apps/gui | |
| parent | 396aeafa6c34cc8ee9698b202471a251e815db3c (diff) | |
| download | rockbox-73157ebb7c18d743045e31ef45ca79f570de24df.zip rockbox-73157ebb7c18d743045e31ef45ca79f570de24df.tar.gz rockbox-73157ebb7c18d743045e31ef45ca79f570de24df.tar.bz2 rockbox-73157ebb7c18d743045e31ef45ca79f570de24df.tar.xz | |
Fix a typo in the comment and add a (somewhat vague) description of the values returned.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20492 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui')
| -rw-r--r-- | apps/gui/gwps-common.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/apps/gui/gwps-common.h b/apps/gui/gwps-common.h index 8752c1d..0d196b2 100644 --- a/apps/gui/gwps-common.h +++ b/apps/gui/gwps-common.h @@ -28,21 +28,25 @@ /* fades the volume, e.g. on pause or stop */ void fade(bool fade_in, bool updatewps); -/* Initially display the wps, can fall back to the build-in wps - * if the chosen wps is invalid */ +/* Initially display the wps, can fall back to the built-in wps + * if the chosen wps is invalid. + * + * Return true on success, otherwise false */ bool gui_wps_display(struct gui_wps *gui_wps); /* return true if screen restore is needed return false otherwise */ bool update_onvol_change(struct gui_wps * gwps); -/* Update track info related stuff, handles cue sheets as well, and redraw */ +/* Update track info related stuff, handle cue sheets as well, and redraw */ bool gui_wps_update(struct gui_wps *gwps); bool ffwd_rew(int button); void display_keylock_text(bool locked); -/* Refresh the WPS according to refresh_mode. */ +/* Refresh the WPS according to refresh_mode. + * + * Return true on success, otherwise false */ bool gui_wps_redraw(struct gui_wps *gwps, int ffwd_offset, unsigned refresh_mode); |