summaryrefslogtreecommitdiff
path: root/apps/misc.h
diff options
context:
space:
mode:
authorWilliam Wilgus <wilgus.william@gmail.com>2024-06-21 10:38:50 -0400
committerWilliam Wilgus <me.theuser@yahoo.com>2024-06-30 02:09:40 -0400
commitdc7486c7de3018b78fcfeafe7a1cc5c9da168494 (patch)
treeca5326e18d88f650e8132c2b9760199701448df2 /apps/misc.h
parentc87c09658a7d65249affe3e8a814bd278998bb42 (diff)
downloadrockbox-dc7486c7de3018b78fcfeafe7a1cc5c9da168494.tar.gz
rockbox-dc7486c7de3018b78fcfeafe7a1cc5c9da168494.zip
[Feature] onplay.c show file progress
first some clean-up of onplay.c extend/move fileobject copy, move, delete routines in prep for other users add error checking, better error codes pre scan to make sure the operation doesn't exceed system resources show progress for file and directory copies Change-Id: Ife2e62df554892dab651bab40433bf70b27e73ff
Diffstat (limited to 'apps/misc.h')
-rw-r--r--apps/misc.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/misc.h b/apps/misc.h
index c6485db4ff..e5fb7a3d1f 100644
--- a/apps/misc.h
+++ b/apps/misc.h
@@ -277,4 +277,8 @@ long to_normalized_volume(long vol, long min_vol, long max_vol, long max_norm);
277 * for the given normalized volume. */ 277 * for the given normalized volume. */
278long from_normalized_volume(long norm, long min_vol, long max_vol, long max_norm); 278long from_normalized_volume(long norm, long min_vol, long max_vol, long max_norm);
279 279
280/* clear the lcd output buffer, if update is true the cleared buffer
281 * will be written to the lcd */
282void clear_screen_buffer(bool update);
283
280#endif /* MISC_H */ 284#endif /* MISC_H */