From 49952325c9d4a74225b3099eb61860bf4592022c Mon Sep 17 00:00:00 2001 From: Martin Scarratt Date: Sun, 15 Apr 2007 13:56:21 +0000 Subject: 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 --- apps/recorder/recording.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'apps/recorder/recording.h') diff --git a/apps/recorder/recording.h b/apps/recorder/recording.h index 3ca1f35834..4fba37b68a 100644 --- a/apps/recorder/recording.h +++ b/apps/recorder/recording.h @@ -25,6 +25,22 @@ bool recording_screen(bool no_source); char *rec_create_filename(char *buf); int rec_create_directory(void); +struct timer +{ + bool countdown; + bool timer_display; + unsigned int days; + unsigned int hrs; + unsigned int mins; + unsigned int secs; + unsigned int days_rpt; + unsigned int hrs_rpt; + unsigned int mins_rpt; + bool repeater; +}; + +struct timer *get_timerstat(void); + /* If true, start recording automatically when recording_sreen() is entered */ extern bool recording_start_automatic; @@ -33,6 +49,7 @@ extern bool recording_start_automatic; void rec_set_source(int source, unsigned flags); #endif /* CONFIG_CODEC == SW_CODEC */ +struct audio_recording_options; /* Initializes a recording_options structure with global settings. pass returned data to audio_set_recording_options or rec_set_recording_options */ -- cgit v1.2.3