diff options
Diffstat (limited to 'recstat.h')
-rw-r--r-- | recstat.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/recstat.h b/recstat.h new file mode 100644 index 0000000..556070f --- /dev/null +++ b/recstat.h @@ -0,0 +1,17 @@ +/* + * recstat.h + */ + +#ifndef __RECSTAT_H +#define __RECSTAT_H + + +enum eRecStat { + recWait, /* wait for the first toggle */ + recOff, /* no active recording */ + recStart, /* start recording */ + recRun, /* active recording */ + recStop, /* stop recording */ +}; + +#endif /* __RECSTAT_H */ |