summaryrefslogtreecommitdiff
path: root/apps/gui/statusbar.h
diff options
context:
space:
mode:
authorMartin Scarratt <mmmm@rockbox.org>2007-04-15 13:56:21 +0000
committerMartin Scarratt <mmmm@rockbox.org>2007-04-15 13:56:21 +0000
commit49952325c9d4a74225b3099eb61860bf4592022c (patch)
tree70302ab68faf2d231ee491c201dcc47736f852b4 /apps/gui/statusbar.h
parent3c6e46ce64297697bbd6c713da3d0ba7856d6ea9 (diff)
downloadrockbox-49952325c9d4a74225b3099eb61860bf4592022c.tar.gz
rockbox-49952325c9d4a74225b3099eb61860bf4592022c.zip
Recording countdown timer and repeat timer - see FS #6297 for more details
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13165 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui/statusbar.h')
-rw-r--r--apps/gui/statusbar.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/apps/gui/statusbar.h b/apps/gui/statusbar.h
index 21f98336d0..660c657f29 100644
--- a/apps/gui/statusbar.h
+++ b/apps/gui/statusbar.h
@@ -37,6 +37,14 @@ struct status_info {
37 int hour; 37 int hour;
38 int minute; 38 int minute;
39#endif 39#endif
40#ifdef HAVE_RECORDING
41 int timer_day;
42 int timer_hour;
43 int timer_min;
44 int timer_sec;
45 int timer_repeat;
46#endif
47 int timer_display;
40 48
41#if CONFIG_CHARGING 49#if CONFIG_CHARGING
42 bool inserted; 50 bool inserted;