20
20
gchar action; // recording action: 'S' = start, 'T' = stop, 'P' = pause
21
21
gchar action_prep; // action preposition: 'a' = after
22
22
gchar data_type; // data type: 't' = time data, 'f' = file size, 'l' = label
24
24
gchar label[12]; // textual action: "silence" | ("sound" | "voice" | "audio") | ("bytes" | "kb" | "mb" | "gb" | "tb")
29
29
gint day_of_year; // Internal flag. Used to check if the clock has gone around to next day.
30
30
gint64 seconds; // Internal value. Count seconds for this command.
31
32
gint64 seconds_x; // Internal value. Count seconds to resume recording after "silence" command.
33
35
gboolean done; // Internal value. TRUE when this timer command has been executed.